如果需要,使用以下内容从查询字符串中获取值并转换为特定类型。
public static T Convert<T>(NameValueCollection QueryString, string KeyName, T DefaultValue) where T : IConvertible
{
//Get the attribute
string KeyValue = QueryString[KeyName];
//Not exists?
if (KeyValue == null) return DefaultValue;
//Empty?
if (KeyValue == "") return DefaultValue;
//Convert
try
{
return (T)System.Convert.ChangeType(KeyValue, typeof(T));
}
catch
{
return DefaultValue;
}
}
会这样打电话
int var1 = Convert<int>(HttpContext.Current.Request.QueryString,"ID", 0);
但是,当尝试执行以下操作时,它无法正常工作,所以我的问题是,如果从查询字符串变量中检索的值是 1 或 0 而不是 true 或 false,是否可以更改代码以处理布尔值。
ie... instead of
http://localhost/default.aspx?IncludeSubs=true
the call is
http://localhost/default.aspx?IncludeSubs=1
bool var1 = Convert<bool>(HttpContext.Current.Request.QueryString,"IncludeSubs", false);