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

C# 取form表单的数据

时间:2017-08-08 15:11:40      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:return   html   empty   orm   ati   current   str   form表单   isnull   

//key代表form表单中html元素的name属性值
public static string StringForm(string key)
{
string result = null;
result = HttpContext.Current.Request.Form[key];
return string.IsNullOrEmpty(result) ? "" : result;
}

C# 取form表单的数据

标签:return   html   empty   orm   ati   current   str   form表单   isnull   

原文地址:http://www.cnblogs.com/niuniu0108/p/7306359.html

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