i have my logins setup, using my webconfig file
a login page
the problem is, to view any page you must login, there are a few pages that i want everyone to see,
any quick fixes out there
Printable View
i have my logins setup, using my webconfig file
a login page
the problem is, to view any page you must login, there are a few pages that i want everyone to see,
any quick fixes out there
That goes in web config.Code:
'other config stuff
</system.web>
'I have added this
<location path="Main.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
</configuration>
Add one per page u want random users to see.
Woof
brilliant
i but the code in the above post at the very bottom of my webconfig, works an absolute treat
super moderator
No problems...you may want to check out my 2 threads on logining in to web apps.
The links are in my sig under:
My ASP.NET Code Examples
if you have any questions then give me a shout :D
Woof