I'm trying to use Server.Transfer on a redirection page using PWS at home (my site is in dev before being transfered to IIS machines).
The page checks to see if the username exists in the database and then redirects to the appropriate page ("name in use" or "account created". I want to use Server.Transfer but I get the error "Transfer does not exists in object" or something.
The other way of doing it is to use request.form to get teh username, insert it into a hidden text field, check for a duplicate in the databse, then compare the results and redirect accordingly using all using JavaScript. Too long. Server.Transfer and a couple of IFs would be much more elegant.
IS this error PWS specific? Does PWS not support Server.Transfer? How else can I change the window's location in ASP?
Lastly, can I create my website linked to the DB at home and then copy it to the servers in a fullu funtional form by just changing the connection strings to the appropriate format for the IISs and not my root directory?
Help would be most appreciated.
The page checks to see if the username exists in the database and then redirects to the appropriate page ("name in use" or "account created". I want to use Server.Transfer but I get the error "Transfer does not exists in object" or something.
The other way of doing it is to use request.form to get teh username, insert it into a hidden text field, check for a duplicate in the databse, then compare the results and redirect accordingly using all using JavaScript. Too long. Server.Transfer and a couple of IFs would be much more elegant.
IS this error PWS specific? Does PWS not support Server.Transfer? How else can I change the window's location in ASP?
Lastly, can I create my website linked to the DB at home and then copy it to the servers in a fullu funtional form by just changing the connection strings to the appropriate format for the IISs and not my root directory?
Help would be most appreciated.