in asp you can do response.redirect("someurl") to bounce someone to another page. Is there anything similar available in webware? I'm guessing no since response.redirect actually works with IIS, unless apache has something similar that webware can tie into. Or am i completely wrong?
Response.Redirect(destination) sends an HTTP 302 response to the client. The corresponding method in Webware is Response.sendRedirect(destination), and there's a convenience method on the Page class - Page.sendRedirectAndEnd(destination) - which also ends the response.
HTH! xtian
------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ Webware-discuss mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/webware-discuss
