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
What is the use of execute non query in asp.net?
Explain the difference between value type and reference type?
How asynchronous call can be implemented using delegates?
How can we inherit a static member?
Is there any alternative to avoid name collisions other then Namespaces?
Explain about the .NET framework?
Can you use c# without .net?
What is application Object?
How is it possible for .NET to support many languages?
What is the flow of processing of the request? : asp.net mvc
How may clustered index we can create in table?
Which is better php or asp.net?
Is viewstate enabled by default?
What is s2s tracking?
Can we have multiple web config files for an asp.net application?