0

我需要使用 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 中。任何帮助将不胜感激。

4

2 回答 2

0
Source page : Session("value") = value;
Destination page : value = Session("Value");
于 2013-05-21T19:52:04.623 回答
0

一个很好的资源是这个页面:

http://msdn.microsoft.com/en-us/library/6c3yckfw(v=vs.100).aspx

在那里你也可以找到一些代码片段。享受。

问候约翰尼

于 2013-05-21T18:02:24.567 回答