Hi,
Yes problem is that it will post data but not redirect you to that page... After you've validated the user input server-side you can call server-side function which will response.write to your page some HTML +
JS code and this will send the form
Consider the following ASP.NET code:
----------------------------------------------
Response.Write("<form name='YourForm' action='http://your_url_here' method='POST' >")
Response.Write("<input type='hidden' name='Var1' value='5' >")
Response.Write("<input type='hidden' name='Var2' value='test' >")
Response.Write("<form>")
Response.Write("<script>")
Response.Write("document.YourForm.submit();")
Response.Write("</script>")
Avanish Pandey
Set your heart upon your work, but never on its reward