[求助]一个有关Request.Params[""]的问题
using System;
namespace Test
{
/// <summary>
/// RequestUtil 的摘要说明。
/// </summary>
public class RequestUtil : System.Web.UI.Page
{
public RequestUtil()
{
//
// TODO: 在此处添加构造函数逻辑
//
}
public static int getInt (string Value, int Default) {
int n = Default;
System.Web.UI.Page P = new System.Web.UI.Page();
string Key = "";
try {
Key = P.Request.Params[Value];
n = Convert.ToInt32(Key, Default);
}
catch {}
return n;
}
}
}
上面的程序为什么我给它传什么参数它都是Default的值呢?
是不是程序有错?那要怎么写啊?
谢谢!