My website has around 100 aspx. Out of this, a certain 20
aspx files should be made available to the users only
if they are logged in. How can I achieve this with the
web.config file?
Answer Posted / rajesh
<configuration>
<appSettings>
<add key="DSN" value="user id=user;password=user;data
source=192.168.0.102;database=shp_cart"/>
</appSettings>
<connectionStrings>
</connectionStrings>
<system.web>
<authentication mode="Forms">
<forms cookieless="UseCookies"
defaultUrl="private/productcatalogue.aspx"
loginUrl="Index.aspx" timeout="30" protection="All"
name="LoginPage">
<credentials passwordFormat="SHA1"></credentials>
</forms>
</authentication>
<authorization>
<allow users="*"/>
</authorization>
<compilation debug="true"/>
</system.web>
<location allowOverride="true" path="private">
<system.web>
<authorization>
<deny users="?"/>
</authorization>
<compilation debug="true"/></system.web>
</location>
</configuration>
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
Explain State management in asp.net
Explain about secure socket layer?
What is the use of express session?
How are sessions stored?
How does http session work?
Explain how is a property designated as read-only?
What kind of data can be stored in viewstate?
What is the use of service provider?
Write code to send e-mail from an asp.net application?
Who is using asp.net?
WSDL means?
Which property needs to be set for script manager control to extend the time before throwing time out expection if no response is received from the server?
What are the asp.net server side objects?
How does session authentication work?
How you can manage the state of application at the server side in ASP.NET?