remove paramters from visible URL (General questions)
Within my app I'm using the wodWebserver component.
It serves a page and within that page there is link (/saweb?uid=34&maintenance=true)
When you click on that link, I get the request, I can get the parameters (uid & maintenance) and act accordingly. And return the correctpage to the webbrowser BUT within the browser I see as URL /saweb?uid=34&maintenance=true, and I would like to see /saweb (without the parameters), how can this be done? Can I from within the 'server' somehow control this?
The way I found, but not sure if this is the most elegant way is:
within the requestDone event, after I've worked with all received paraters I do
User.Response.Redirect User.Request.Path & User.Request.PageName
exit sub
dirk