• C# POST数据到指定页面,并跳转至该页面


    1.     /// <summary>
    2.     /// 跨页面POST数据
    3.     /// </summary>
    4.     public class RemotePost : Dictionary<string, string>
    5.     {
    6.         /// <summary>
    7.         /// 提交HTTP POST请求
    8.         /// </summary>
    9.         /// <param name="url">请求目标地址</param>
    10.         /// <param name="isBackable">可选参数,是否可通过浏览器回退按钮退到本提交页面</param>
    11.         public void Submit(string url, bool isBackable = true)
    12.         {
    13.             HttpResponse response = System.Web.HttpContext.Current.Response;
    14.             response.Clear();
    15.             if (isBackable)
    16.             {
    17.                 response.Write("<html><head></head><body onload="pageload();">");
    18.                 response.Write("<script language="javascript">function pageload(){if(document.getElementById('hidBackUrl').value.length==0){document.getElementById('hidBackUrl').value=document.referrer;document.form1.submit();}else{location.href=document.getElementById('hidBackUrl').value;}}</script>");
    19.                 response.Write("<input id="hidBackUrl" type="hidden" value="" />");
    20.             }
    21.             else
    22.             {
    23.                 response.Write("<html><head></head><body onload="document.form1.submit();">");
    24.             }
    25.             response.Write(string.Format("<form name="form1" method="post" action="{0}">", url));
    26.             foreach(string key in this.Keys)
    27.             {
    28.                 response.Write(string.Format("<input name="{0}" type="hidden" value="{1}" />", key, this[key]));
    29.             } 
    30.             response.Write("</form></body></html>");
    31.             response.End();
    32.         }
    33.     }
    使用方法非常简单

    1. var post = new CtripSZ.Frameworks.Net.RemotePost();
    2. post.Add("GUID", Guid.NewGuid().ToString());
    3. post.Submit("./Receive.aspx");
     
     
    原文地址:http://blog.chinaunix.net/uid-20049824-id-3348117.html
  • 相关阅读:
    问题解决:访问自己搭建网页时出现:此地址使用了一个通常用于网络浏览以外的端口。出于安全原因,Firefox 取消了该请求。
    cracer教程5----漏洞分析(下)
    cracer教程3----信息收集
    linux3
    pwdump7的用法及其hash值解密
    maven scope含义的说明
    Spark2.0协同过滤与ALS算法介绍
    Jmeter压力测试工具安装及使用教程
    过滤器(Filter)与拦截器(Interceptor )区别
    @Value()读取配置文件属性,读出值为null的问题
  • 原文地址:https://www.cnblogs.com/niaowo/p/3464475.html
Copyright © 2020-2023  润新知