What is the default name that will be given if no cookie name is provided in Asp.Net Forms Authentication ?
Interview question and answer by:
Akiii | Posted on: 5/9/2012 | Category:
ASP.NET Interview questions | Views: 1184 | |
Points: 40
Select from following answers:- .ASPZ
- .ASPXA
- .ASPXAUTH

If no name is specified the default is .ASPXAUTH. Here's how you do it :-
<system.web>
<authentication mode= "Forms">
<forms loginUrl="MyLoginForm.aspx" />
</authentication>
</system.web>
Show Correct Answer |
Found interesting? Add this to: