页面报错:“/”应用程序中的服务器错误。
--------------------------------------------------------------------------------
未将对象引用设置到对象的实例。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.NullReferenceException: 未将对象引用设置到对象的实例。
源错误:
行 212: <tr onmouseover="this.bgColor='#e0e0e0'" onmouseout="this.bgColor=''" ondblclick="ShowMsg(<%=msg.MsgID%>)" style="cursor:hand">
行 213: <td><input type=checkbox name="mids" id="mids" value="<%=msg.MsgID%>"></td>
行 214: <td><%=msgtype.MsgTypeName%></td>
行 215: <td><%=msg.MsgCreateTime%></td>
行 216: <td><%
源文件: D:\ioffice\Web\unimsg\default.aspx 行: 214
部分程序源码:
<%
for(int i=PageSize*(CurPage-1);i<PageSize*CurPage && i<NumItems;i++)
{
BizEngine.Messaging.UniMsg msg = (BizEngine.Messaging.UniMsg)lstMsg[i];
BizEngine.Messaging.UniMsgType msgtype = ummgr.GetUniMsgType(msg.MsgTypeID);
%>
<tr onmouseover="this.bgColor='#e0e0e0'" onmouseout="this.bgColor=''" ondblclick="ShowMsg(<%=msg.MsgID%>)" style="cursor:hand">
<td><input type=checkbox name="mids" id="mids" value="<%=msg.MsgID%>"></td>
<td><%=msgtype.MsgTypeName%></td>
<td><%=msg.MsgCreateTime%></td>
请问 这个是什么问题 ???? 应该如何解决??