C# 程序调试出错,等待高手指教
出现错误“未将对象引用设置到对象的实例”代码如下
if (!IsPostBack)
{
string sql;
sql = "select * from cheyuanxinxi where id=" + Request.QueryString["id"].ToString().Trim();
getdata(sql);
}
错误在这行 sql = "select * from cheyuanxinxi where id=" + Request.QueryString["id"].ToString().Trim();
希望各位高手给予解答 在此表示感谢! --------------------编程问答-------------------- 这一句 Request.QueryString["id"].ToString().Trim();
没有抓到值。 --------------------编程问答-------------------- Request.QueryString["id"]为null了
你的地址栏里面必须有?id=xx这样的参数才可以 --------------------编程问答-------------------- Request.QueryString["id"] 取出的值是 null ,也就是 url 的参数列表里没有键为 id 的。 --------------------编程问答-------------------- if (!Page.IsPostBack)
{
string sql=null;
if(Request.QueryString["id"]!=null)
{
sql = "select * from cheyuanxinxi where id=" + Request.QueryString["id"].ToString().Trim();
getdata(sql);
}
}
补充:.NET技术 , C#