Rewrite the master page form action attribute in asp.net 2.0
So how to rewrite the form action attribute?
1. Use simple HTML forms and elements, instead of server form and controls.
2. Use javascript code. For example,
btnOK.Attributes.Add(“OnClick”, “document.forms[0].action=’otherwebpage.aspx’;”);
from:http://www.cnblogs.com/rickie/archive/2006/07/25/458909.html