B
Bill
I've got an application that I want to redirect to another file while
keeping the location of the file hidden. In other words,
WEBROOT.COM/REDIT.ASP?a=14
is going to display the contents of file
WEBROOT.COM/SECURE12954
without the user knowing they are in the /SECURE12954 subdir.
Which is better to protect that privacy the name of the /SECURE12954 subdir?
<%Server.Transfer("/SECURE12954")%>
or
<%Response.Redirect("/SECURE12954")%>
or
<!-- #include file="/SECURE12954" -->
Thanks,
-Bill.
keeping the location of the file hidden. In other words,
WEBROOT.COM/REDIT.ASP?a=14
is going to display the contents of file
WEBROOT.COM/SECURE12954
without the user knowing they are in the /SECURE12954 subdir.
Which is better to protect that privacy the name of the /SECURE12954 subdir?
<%Server.Transfer("/SECURE12954")%>
or
<%Response.Redirect("/SECURE12954")%>
or
<!-- #include file="/SECURE12954" -->
Thanks,
-Bill.