nivini
Programmer
- Mar 24, 2004
- 64
In the web server there is the root folder, called www.
in this folder i created a folder called SIteAdmin, in siteadmin i have few files, one is uid.asp,(the form file, where the user enters his details), these details are checked/validates in uid1.asp file.
in uid1.asp file theres the code:
Now to the riddle, the line Response.Redirect "/recCreate2.asp"
yields in the explorer address bar " , well, there is certainlly no such file in the root folder, so i've change it to Response.Redirect "siteAdmin/recCreate2.asp",
thats yields in the explorer address
"well, reccreate2.asp is not there either.
the server supplier support department does not support language and code problems, so I do need your help urgently
nivini
in this folder i created a folder called SIteAdmin, in siteadmin i have few files, one is uid.asp,(the form file, where the user enters his details), these details are checked/validates in uid1.asp file.
in uid1.asp file theres the code:
Code:
if username=PassRec("UserName") and Password=PassRec ("Password") then
session("sessID")=session.SessionID
Response.Redirect "/recCreate2.asp"
else
Response.Write "<html>"
Response.Write "<body>"
Response.Write "<form method=Post action=uid.asp>"
Response.Write "Worng username or Passward"
Response.Write "<input type=submit value=return>"
Response.Write "</form>"
Response.Write "</body>"
Response.Write "</html>"
Response.End
end if%>
yields in the explorer address bar " , well, there is certainlly no such file in the root folder, so i've change it to Response.Redirect "siteAdmin/recCreate2.asp",
thats yields in the explorer address
"well, reccreate2.asp is not there either.
the server supplier support department does not support language and code problems, so I do need your help urgently
nivini