On Mar 5, 1:45 pm, ckk...@my-deja.com wrote:
> Dear All,
>
[quoted text clipped - 4 lines]
>
> Is it possible?
You can use <location> configuration in the web.config file to skip
authentication for the specific file
<location path="default.aspx">
<system.web>
<authorization>
<allow users="*" />
</authorization>
</system.web>
</location>
where * is used to denote "all users". Or use ? to allow an anonymous
user to access the page.