我需要使用 C# 将数据发布到其他网站。
<form action="http://localhost:2180/PrepDoc.aspx" method="post" target="my_frame" >
<input type="text" name="someText" value="Some Text" />
<input type="submit" runat="server" />
</form>
<iframe id="myIframe" name="my_frame" runat="server" >
这工作正常,但我需要使用 c# 来做到这一点。
在我尝试使用 onclick 按钮代码发布数据之前,有人可以指导我,但它需要进入我不想要的 prepdoc 页面。
HttpResponse httpResponse = HttpContext.Current.Response;
httpResponse.Clear();
httpResponse.Write("<html><head></head>");
httpResponse.Write(string.Format(
"<body onload=\"document.{0}.submit()\">",
"frmCart"));
httpResponse.Write(string.Format(
"<form name=\"{0}\" method=\"{1}\" action=\"{2}\" target=\"my_frame\">",
"frmCart",
"Post",
"http://localhost:2180/PrepDoc.aspx"));
httpResponse.Write("</form>");
httpResponse.Write("</body></html>");
httpResponse.End();
我希望它位于默认页面(调用者页面)和 iFrame 中。任何帮助将不胜感激。