码迷,mamicode.com
首页 > Windows程序 > 详细

C# 获取页面Post过来的数据

时间:2014-12-19 18:42:35      阅读:396      评论:0      收藏:0      [点我收藏+]

标签:

/// <summary>
/// 获取post过来的数据
/// </summary>
/// <param name="page"></param>
/// <returns></returns>
private static string PostInput(System.Web.UI.Page page)
{
try
{

System.IO.Stream s = page.Request.InputStream;

int count = 0;

byte[] buffer = new byte[1024];

StringBuilder builder = new StringBuilder();

while ((count = s.Read(buffer, 0, 1024)) > 0)
{

builder.Append(Encoding.UTF8.GetString(buffer, 0, count));

}

s.Flush();

s.Close();

s.Dispose();

return builder.ToString();

}
catch (Exception ex)
{
throw ex;
}
}

C# 获取页面Post过来的数据

标签:

原文地址:http://www.cnblogs.com/a-mumu/p/4174328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!