Not fool proof but;
Opt 1;
<%
If Session(Request.ServerVariables("REMOTE_ADDR")) <> True Then
Response.Redirect "theotherpage_URL"
End If
%>
Opt 2;
<%
If Request.ServerVariables("HTTP_REFERER") <> "theotherpage_URL" then
Response.Redirect "theotherpage_URL"
End If
%>
Opt 3: Use cookies (again not fool proof but..... might work)
--
Regards
Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk
Keeping it FREE!
"Frank Side Burns" <> wrote in message news:sdj0e.766007$8l.384854@pd7tw1no...
> I have a web page (let's call it main.aspx) that must only be accessible
> thru another web page in my web application. Users should not be able to
> browse directly to 'main.aspx'...they can only be redirected their from
> another page on my site. How does one go about doing this?
>
> Thanks for any help.
>
>
>
>
>