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

posted on 2017-08-08 13:27  田坤坤  阅读(4910)  评论(1编辑  收藏  举报