In most other web development I've done you could specify a form's method to be GET. This would case all the name/value pairs from the form to be apended to the querystring of the url to the form's action page. The action page would then get the values from the request.
Basically I want to submit a form but not have any postback, without resorting to building up the url during a postback event and then redirecting back (the get), which is how I've worked around it.
I know ASP.NET is not made to work this way out of the box -just wondering if anyone's found a way to do it. I haven't spent too much time trying to figure it out because if someone else already has, why re-invent the wheel?
Greetings,
Dragonwell