Can you tell me a vbscript for doing an action just like response.redirect command
doing in asp.net.I need to got to one page from another page
Can you tell me a vbscript for doing an action just like response.redirect command
doing in asp.net.I need to got to one page from another page
Response.CodePage = 1252
Response.Redirect ("http://www.microsoft.com" )
Did you try Response.Redirect in VBScript?
Much of the Response, Request, Server, Session and Application interface of ASP.NET was drawn from the originals in ASP classic.
Use Response.Redirect. Regardless if you are using ASP or ASP.NET, it's available.