Add <Identity Impersonate=True> in the web.config file. This might solve
your problem.

Cheers
Nitc3



"Raghuvansh" <raghuvansh@yahoo.com> wrote in message
news:39597f86.0306261355.22e12e5c@posting.google.c om...
> I have a.aspx in the parent directory and b.aspx in a folder 'my'.
> Directory 'my' is protected by form authentication whereas the parent
> directory isn't.
>
> I am transferring objects from a.aspx to b.aspx.
>
> When I perform Server.Transfer("b.aspx") from a.aspx; b.aspx just
> comes up without the login page. However if I use ahref OR
> Response.Redirect from a.aspx to any other page in 'my' directory the
> login page shows up.
>
> I need the login page show up during my server.transfer from a.aspx to
> b.aspx. How do I do it ?