0

我在覆盖表单操作 URL 时遇到问题

我有一个类来覆盖表单操作。

<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 而是表单发布 test 和 test2 值。当我使用 postBackUrl 属性时,它仍然会发布 test 和 test2。

我想要做的是在表单操作不为空时发布 field1 和 field2。因为当没有操作时它工作正常,我无法修改代码上的操作。

您的帮助将不胜感激 干杯

4

1 回答 1

3

您可以将以下代码添加到加载功能后面的代码中

myButton.Attributes.Add("onClick", "javascript: document.forms[0].action='http://otherserver.com/theirpage.html';");

其中 myButton 将是您的按钮的 id。

于 2012-04-06T11:24:36.227 回答