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 / 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 |
What tag do you use to add a hyperlink column to the DataGrid?
Difference between ADO.net Dataset , ADO Record Set & ADO Data Reader?
What is the life cycle of web page?
Where is session data stored in asp net?
Disable Mouse right click on web page in asp.net?
Which methods validate all the controls on a page?
Is it possible to use two versions of assembly at the same time?If possible explain with code?
What is true about application service provider?
How do I create a web form?
Where can I get information on cookies in asp.net?
What is advantage and disadvantage of viewstate
What is the difference between session and application?