Whether the form is specified on the default page, or in the master page, it is still accessible via the Form property on the page.
Therefore, you should be able to set it's action in the code behind for that page.
protected void Page_Load(object sender, System.EventArgs e)
{
this.Form.Action = "Default.aspx";
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…