Is this code on a page that is also in the logon folder?
If so then:
Response.Redirect "found.asp"
--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
"Pierre" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Hi all,
>
> I have a page wich check a password
> if good i want to load a page as in:
>
> If ComparePassword(Request("UID"),Request("PWD")) Then
> ' If comparison was good, store the user name...
> Session("UID") = Request("UID")
> Response.redirect "/logon/found.asp"
> End If
>
> But it is not working, i still have the logon screen.
>
> how can i call a page within asp code
> regards,
> pierre
>
>