Start answering this ASP.NET interview questions as follows: -
In traditional ASP if you are told to create a login page and do authentication you have to do hell lot of custom coding. Now in ASP.NET that has made easy by introducing Forms authentication. So let us see in detail what form authentication is.
Forms authentication uses a ticket cookie to see that user is authenticated or not. That means when user is authenticated first time a cookie is set to tell that this user is authenticated. If the cookies expire then Forms authentication mechanism sends the user to the login page.
Following are the steps, which defines steps for Forms authentication:-
Also, import System.Web.Security and put the following code in login button of the page.
See the following video on Single sign-on using forms authentication in ASP.NET as follows: -
Click and see more ASP.NET interview questions
Regards,
Also view author’s other blog on ASP.NET interview questions
In traditional ASP if you are told to create a login page and do authentication you have to do hell lot of custom coding. Now in ASP.NET that has made easy by introducing Forms authentication. So let us see in detail what form authentication is.
Forms authentication uses a ticket cookie to see that user is authenticated or not. That means when user is authenticated first time a cookie is set to tell that this user is authenticated. If the cookies expire then Forms authentication mechanism sends the user to the login page.
Following are the steps, which defines steps for Forms authentication:-
- Configure Web.config file with forms authentication. As shown below in the config file you can see we have give the cookie name and loginurl page.
- Remove anonymous access to the IIS web application, following are changes done to web.config file.
- Create the login page, which will accept user information. You will have create your login page that is the Login.aspx, which will actually take the user data.
- Finally a small coding in the login button.
Also, import System.Web.Security and put the following code in login button of the page.
See the following video on Single sign-on using forms authentication in ASP.NET as follows: -
Click and see more ASP.NET interview questions
Regards,
Also view author’s other blog on ASP.NET interview questions
1 comment:
The article really helped me in preparation of my asp.net interview.
web application development
Post a Comment