这里以前写的草稿,今天就都发布了
这里一个放在页面基类PageBase中的用于获取参数的函数,简单好看。
页面中使用如下:
int id=Get<int>("id",-1);
string name=Get<string>("name","");
函数代码如下:
public virtual T Get<T>(string key, T defaultValue)
{
if (Request[key] == null) { return defaultValue; }
object result;
if (typeof(T).Name == "Int32")
{
int _result = 0;
if (!int.TryParse(Request[key], out _result))
{
return defaultValue;
}
result = _result;
}
else
{
result = Request[key].Trim();
}
return (T)result;
} //只能把object类型转T,其它类型都报错
{
if (Request[key] == null) { return defaultValue; }
object result;
if (typeof(T).Name == "Int32")
{
int _result = 0;
if (!int.TryParse(Request[key], out _result))
{
return defaultValue;
}
result = _result;
}
else
{
result = Request[key].Trim();
}
return (T)result;
} //只能把object类型转T,其它类型都报错
版权声明:程序员胖胖胖虎阿 发表于 2022年10月5日 下午8:16。
转载请注明:public virtual T Get(string key, T defaultValue) | 胖虎的工具箱-编程导航
转载请注明:public virtual T Get
相关文章
暂无评论...