I have an ASP.NET web page(Not MVC ) (HomePage.aspx) and another page (PRiceList.aspx).I have a login feature in my Home page.So when a user logged in the site, They can go to the pricelist.aspx page easily using a link in homepage.If some one is entering the page with out logging in , I want to show a modal login box (background disabled) to login . I saw this in jqueryui site.Can any one tell me how to impement this in my site ? Is there any security problem in this since i am using the javascript to send the user credentials to the site when using this method (I am not sure) . Please advice. Thanks in advance
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
jQuery Modal Form Dialog is your way to go here. I made a test app doing what you wanted with it and it worked well. Markup for your ASPX page:
Javascript needed for the page:
Code behind I used on the aspx page:
You would give it true or false, depending on if the user was authenticated, so the javascript would know to display the login or not. Now about the security. The login wouldn't be done by the javascript because the user would hit the button on that login page and it would post back to the server like normal. If you wanted to use ajax, you would have to check out the jQuery $.ajax method. |
|||||||
|
|
Use a jquery dialog: http://jqueryui.com/demos/dialog This needs you to add the modal back to the DOM too.
|
||||
|
|