1、Post提交

  1. private string PostWebRequest(string Url, string paramData, string dataEncode)
  2. {
  3. string ret = string.Empty;
  4. try
  5. {
  6. Encoding myEncoding = Encoding.GetEncoding(dataEncode);
  7. byte[] byteArray = myEncoding.GetBytes(paramData); //转化
  8. HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(Url);
  9. webReq.Method = POST”;
  10. webReq.ContentType = "application/x-www-form-urlencoded";
  11.  
  12. webReq.ContentLength = byteArray.Length;
  13. Stream newStream = webReq.GetRequestStream();
  14. newStream.Write(byteArray, , byteArray.Length);//写入参数
  15. newStream.Close();
  16. HttpWebResponse response = (HttpWebResponse)webReq.GetResponse();
  17. StreamReader sr = new StreamReader(response.GetResponseStream(), myEncoding);
  18. ret = sr.ReadToEnd();
  19. sr.Close();
  20. response.Close();
  21. }
  22. catch (Exception ex)
  23. {
  24. WriteFileLog(ex.ToString());
  25. MessageBox.Show(ex.Message);
  26. }
  27. return ret;
  28. }

2、Get提交

  1. private string GetWebRequest(string Url, string paramData, string dataEncode)
  2. {
  3. string requestString = "";
  4. try
  5. {
  6. string reallyUrl = Url;
  7.  
  8. Encoding myEncoding = Encoding.GetEncoding(dataEncode);
  9. // CookieContainer cookieContainer = new CookieContainer();
  10. HttpWebRequest request = WebRequest.Create(reallyUrl) as HttpWebRequest;
  11. // ServicePointManager.CheckCertificateRevocationList = false;
  12. request.Method = GET”;
  13. // request.KeepAlive = false;
  14. // request.AllowAutoRedirect = true;
  15. request.ContentType = "application/x-www-form-urlencoded";
  16.  
  17. HttpWebResponse response = (HttpWebResponse)request.GetResponse();
  18. StreamReader responseStream = new StreamReader(response.GetResponseStream(), myEncoding);
  19. requestString = responseStream.ReadToEnd();
  20. response.Close();
  21. responseStream.Close();
  22. }
  23. catch (Exception ex)
  24. {
  25.  
  26. WriteFileLog(ex.ToString());
  27. MessageBox.Show(ex.Message);
  28. }

C#中Post和Get提交的更多相关文章

  1. jsp中普通按钮如何提交表单

    jsp中普通按钮如何提交表单方法1: <form action = "提交的地址">         <input type="submit" ...

  2. struts2中token防止重复提交表单

    struts2中token防止重复提交表单 >>>>>>>>>>>>>>>>>>>&g ...

  3. 详解OJ(Online Judge)中PHP代码的提交方法及要点【举例:ZOJ 1001 (A + B Problem)】

    详解OJ(Online Judge)中PHP代码的提交方法及要点 Introduction of How to submit PHP code to Online Judge Systems  Int ...

  4. js jq输入框中按回车触发提交事件,用户在页面输入后按回车(Enter键)进行

    js jq输入框中按回车触发提交事件,用户在页面输入后按回车(Enter键)进行 代码如下: <!DOCTYPE html> <html lang="en" xm ...

  5. 如何永久删除git仓库中敏感文件的提交记录

    如何永久删除git仓库中敏感文件的提交记录 参考: 1. https://help.github.com/articles/remove-sensitive-data/

  6. YARN 中的应用程序提交

    YARN 中的应用程序提交 本节讨论在应用程序提交到 YARN 集群时,ResourceManager.ApplicationMaster.NodeManagers 和容器如何相互交互.下图显示了一个 ...

  7. 在Action中获取表单提交数据

    -----------------siwuxie095 在 Action 中获取表单提交数据 1.之前的 Web 阶段是提交表单到 Servlet,在其中使用 Request 对象 的方法获取数据 2 ...

  8. IDEA中Git的更新/提交/还原方法

    记录一下在IDEA上怎样将写的代码提交到GitHub远程库: 下面这个图是基本的提交代码的顺序: 1. 将代码Add到stage暂存区本地修改了代码后,需先将代码add到暂存区,最后才能真正提价到gi ...

  9. iframe中使用模态框提交表单后,iframe加载父页面的解决方法

    在iframe中使用模态框提交表单后,会出现iframe加载整个父页面的问题,如下图: 解决方法: 在form表单中添加target属性 _parent 这个属性会使目标文档载入父窗口或者包含来超链接 ...

  10. ajaxSubmit 页面生成的html 中含有表单提交表单方式

    $("#form_title").ajaxSubmit({ //页面生成的html 中含有表单提交表单方式 dataType: "json", success ...

随机推荐

  1. golang channel basic

    package mainimport ( "fmt" "math/rand" "time")func main() { rand.Seed( ...

  2. js中ascii码的转换

    今天在把原来用C写的程序移植到javascript上,但是有个地方一直调不通,后来才发现是js奇葩的字符处理出的问题.c中使用的字符处理比如加上一个字符值强制转换一下,在js中就行不通了. 但是js提 ...

  3. BuildFilePath 及打开文件对话框

    也许以后就主要在这里发SOUI的介绍了. 贴一段文件相关的helper, 测试一下贴代码是不是方便. /** * Copyright (C) 2014-2050 * All rights reserv ...

  4. ubuntu kylin中如何截图

    windows操作系统中,我通常使用的截图工具是QQ的“ctrl+alt+a”快捷键.但是在ubuntu中,linux qq常年不更新,我也就彻底放弃了使用了,反正ubuntu通常只是拿来开发.其实没 ...

  5. 在Salesforce中通过 Debug Log 方式 跟踪逻辑流程

    在Salesforce中通过 Debug Log方式 跟踪逻辑流程 具体位置如下所示: Setup ---> Logs ---> Debug Logs ---> Monitored ...

  6. JS 捕获 input 中 键盘按键

    JS 捕获 input 中 键盘按键 的相应处理事件是很简单的,google搜索一下很容易找到处理方式,请看如下一种简单的处理方式: HTML代码: <div> <input typ ...

  7. java学习笔记(3):网络编程

    基本原理 客户端要发起通信,首先得知道运行服务器程序主机的IP地址,然后由网络的基础结构利用目标地址,将发送的信息传递到正确的主机上.地址可以是数字型(IPv4或者IPv6),也可以是字符串(必须先被 ...

  8. SSH 小总

    SSH 为 struts+spring+hibernate的一个集成框架,是目前较流行的一种Web应用程序开源框架. 集成SSH框架的系统从职责上分为四层:表示层.业务逻辑层.数据持久层和域模块层,以 ...

  9. JAVA Day2

          标识符(类名:变量.属性.方法名: )      组成:类名开头不能是数字,只能有字母数字_$组成.         命名规范: 类名每一个单词首字母大写(HelloWorld大驼峰法则) ...

  10. Angular JS 学习之简介

    1.Angular JS是一个JavaScript框架,它是一个以JavaScript编写的库,它可以通过<script>标签添加到HTML页面: <script src=" ...