标签: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;
}
标签:return html empty orm ati current str form表单 isnull
原文地址:http://www.cnblogs.com/niuniu0108/p/7306359.html