May 13, 2004 #1 shaunacg Programmer Aug 1, 2003 71 GB Hi I'm just trying to redirect to another page inside a vbscript function so have used the following: response.redirect("index.htm") but I get an error saying object required "response" Does anyone know what the problem is? Thanks. shaunacg
Hi I'm just trying to redirect to another page inside a vbscript function so have used the following: response.redirect("index.htm") but I get an error saying object required "response" Does anyone know what the problem is? Thanks. shaunacg
May 13, 2004 #2 PHV MIS Nov 8, 2002 53,708 FR response is a server side object you can't use in a client side function. Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
response is a server side object you can't use in a client side function. Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
May 13, 2004 Thread starter #3 shaunacg Programmer Aug 1, 2003 71 GB That explains it. Thanks. Upvote 0 Downvote