我遇到覆盖表格操作网址的问题
我有一个类来覆盖表单操作。
<html>
<head>
</head>
<body>
<form id="form1" runat="Server" action="https://www.test.com">
<div style="">
<asp:button runat="Server" onclick="PostMe" Text="Post"/>
</div>
<asp:HiddenField runat="server" ID="test" value="0" />
<asp:HiddenField runat="server" ID="test2" value="0" />
</form>
</body>
</html>
<script runat="server">
void PostMe(Object sender,EventArgs e){
RemotePost2 myremotepost = new RemotePost2();
myremotepost.Url = "https://www.test.com";
myremotepost.Add("field1","Tom");
myremotepost.Add("field2","Sawyer");
myremotepost.Post();
}
public class RemotePost2{
private System.Collections.Specialized.NameValueCollection Inputs = new System.Collections.Specialized.NameValueCollection();
public string Url = "";
public string Method = "post";
public string FormName = "forms";
public void Add(string name,string value){
Inputs.Add(name,value);
}
public void Post(){
System.Web.HttpContext.Current.Response.Clear();
System.Web.HttpContext.Current.Response.Write("<html><head>");
System.Web.HttpContext.Current.Response.Write(string.Format("</head><body onload=\"document.{0}.submit()\">",FormName));
System.Web.HttpContext.Current.Response.Write(string.Format("<form name=\"{0}\" method=\"{1}\" action=\"{2}\" >",FormName,Method,Url));
for(int i=0;i< Inputs.Keys.Count;i++){
System.Web.HttpContext.Current.Response.Write(string.Format("<input name=\"{0}\" type=\"hidden\" value=\"{1}\">",Inputs.Keys[i],Inputs[Inputs.Keys[i]]));
}
System.Web.HttpContext.Current.Response.Write("</form>");
System.Web.HttpContext.Current.Response.Write("</body></html>");
System.Web.HttpContext.Current.Response.End();
}
}
问题是我不能发布field1和field2而不是post post test和test2值。当我使用postBackUrl属性时,它仍然发布test和test2。
我想要做的是在表单操作不为空时发布field1和field2。因为当没有动作时它工作正常,我无法修改代码上的动作。
非常感谢您的帮助 干杯
答案 0 :(得分:3)
您可以在下面添加加载功能背后的代码
myButton.Attributes.Add(“onClick”,“javascript: document.forms [0] = .action的 'http://otherserver.com/theirpage.html';“);
其中myButton将是您按钮的ID。