求助:未将对象引用设置到对象的实例。
未将对象引用设置到对象的实例。说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
private void Page_Load(object sender, EventArgs e)
{
string str = "";
str = this.Session["GroupId"].ToString();
if (!base.IsPostBack)
{
string strSql = "";
DataSet set = new DataSet();
strSql = "SELECT actid,title,url,target FROM Tbl_Menu where nodelevel=1 and charindex('#" + str + "#',userLevel)>0 order by serial";
set = this.Mc.Public_GetDs(strSql);
if (set.Tables[0].Rows.Count > 0)
{
this.dlMainMenu.DataSource = set;
this.dlMainMenu.DataBind();
}
else
{
this.Page.Response.Write("没有设置菜单权限,请通知系统管理员!");
this.Page.Response.End();
}
}
} --------------------编程问答-------------------- 自己顶了!
补充:.NET技术 , ASP.NET