navigation between secure pages
-
hi friends i have a secure page(a page which is viewable after i login say page1.aspx) in page1.aspx i have a imagebutton. On the click of this image button i need to navigate to another page say page2.aspx which is also a secure page(this page is also viewed after i login but i have already loged in and viewed page1.aspx) so how to doit so plz do help me in this issue K.Gayathri
-
hi friends i have a secure page(a page which is viewable after i login say page1.aspx) in page1.aspx i have a imagebutton. On the click of this image button i need to navigate to another page say page2.aspx which is also a secure page(this page is also viewed after i login but i have already loged in and viewed page1.aspx) so how to doit so plz do help me in this issue K.Gayathri
This is no different than navigating to any other page, secured or unsecured
No comment
-
This is no different than navigating to any other page, secured or unsecured
No comment
hi i am not able to navigate between secure pages(all kept inside a folder by name secure) as i have set in the web.config file inside the secure folder as follows: i have set so because no one should access these pages without logging in......plzzzzzzzzzzz do help me K.Gayathri
-
hi i am not able to navigate between secure pages(all kept inside a folder by name secure) as i have set in the web.config file inside the secure folder as follows: i have set so because no one should access these pages without logging in......plzzzzzzzzzzz do help me K.Gayathri
If the user has already logged in then they have been authenticated and have access to any of the pages. How are trying to navigate?
No comment
-
If the user has already logged in then they have been authenticated and have access to any of the pages. How are trying to navigate?
No comment
hi thanks for the reply yes if the user is logged in he should be able to access the other secure pages now but since i have given after login successfully the user enter a secure page say by using the code Server.Transfer("~/Secure/Dashboard.aspx"); so now if i am in dashboard.aspx i have some more secure pages in the same secure folder which is accessible once the user is logged in and is in dashboard.aspx...so how to do it it is redirecting to the login page itself K.Gayathri
-
hi thanks for the reply yes if the user is logged in he should be able to access the other secure pages now but since i have given after login successfully the user enter a secure page say by using the code Server.Transfer("~/Secure/Dashboard.aspx"); so now if i am in dashboard.aspx i have some more secure pages in the same secure folder which is accessible once the user is logged in and is in dashboard.aspx...so how to do it it is redirecting to the login page itself K.Gayathri
-
hi friend i am using form authentication using sqlserver as my database and not web.config so that part i am ok as i can compare the values from the database using my own code and getting redirection to a secure page but my problem now is that from that secure page how to move to other pages which are secure K.Gayathri
-
hi friend i am using form authentication using sqlserver as my database and not web.config so that part i am ok as i can compare the values from the database using my own code and getting redirection to a secure page but my problem now is that from that secure page how to move to other pages which are secure K.Gayathri
Not using web.config? This makes no sense at since you have shown the web.config you are using. You can't use form auth without it. Good luck.
No comment
-
Not using web.config? This makes no sense at since you have shown the web.config you are using. You can't use form auth without it. Good luck.
No comment
hi friend i am using web.config file only but i am comparing the values from the database and i am not using credentials ok....you got it now what i say so after i validate from the database i enter a secured page and from that secured page i am not able to navigate to another secured page..... hope you got me now K.Gayathri
-
hi friend i am using form authentication using sqlserver as my database and not web.config so that part i am ok as i can compare the values from the database using my own code and getting redirection to a secure page but my problem now is that from that secure page how to move to other pages which are secure K.Gayathri
MalarGayu wrote:
i am using form authentication using sqlserver as my database and not web.config
so that part i am ok as i can compare the values from the database using my own code and getting redirection to a secure pageYour problem probable exists in how you are doing your authorization. It sounds like you are not using the default log-in and membership provider in asp.net by your statement above. Show us the code that you are using to log someone into your site.