Link to home
Start Free TrialLog in
Avatar of alivemedia
alivemedia

asked on

allow access to single .aspx page?

Currently I am restricting acces to my site using forms in the web.config file but I want to also allow access to a single page? How do I do this?

Here is my current web.config:

<system.web>
<authentication mode="Forms" />
<authorization>
      <deny users="?"/>
      <allow users="*"/>
</authorization>
</system.web>
ASKER CERTIFIED SOLUTION
Avatar of Carl Tawn
Carl Tawn
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of alivemedia
alivemedia

ASKER

Thanks, I couldn't remeber the format