IIS Configuration ASPNET Start Page

Source: Internet
Author: User
ASP. General settings for the start Page: 1: In Web. config, add form authentication; <authentication mode= "Forms" > <forms name= "auth" loginurl= "Inde X.aspx "timeout=" ></forms> </authentication> <authorization> <deny users= "?"/> </au  Thorization> 2: If there is a registration page should also allow anonymous users to call the registration page to register; The following code should be between <configuration><system.web>, and should not be included in the <SYSTEM.WEB>  Between </system.web>;  ----------------means that anonymous users are allowed access to the Userreg.aspx page. <location path= "userreg.aspx" > <system.web> <authorization> <allow users= "?"/> </authoriz  Ation> </system.web> </location> 3 to create an authentication ticket after a successful login, indicating that a legitimate user has passed the certification; if (login succeeded) System.Web.Security.FormsAuthentication.SetAuthCookie (user name, false);

  

IIS Configuration ASPNET Start Page

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.