产品使用及交流论坛

首页 » 产品使用交流区 » 安装及使用交流 » 69行又错误,请大神指点
irock - 2015/8/6 22:22:33
Column 'pa_canshu' does not belong to table default.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentException: Column 'pa_canshu' does not belong to table default.

Source Error:

Line 67: <div class="tabcontent"><dl class="tab_c" id="tab_c">
Line 68: <dd><%=dr["content"]%></dd>
Line 69: <dd><%=dr["pa_canshu"]%></dd>
Line 70: <dd><script src="/e/aspx/ajax_list.aspx?modelid=93" type="text/javascript"></script>
Line 71: <script type="text/javascript">
xiyou - 2015/8/7 11:02:47
这个错误意思是
pa_canshu这个字段不存在,但是模型中调用了这个字段,所以出错,直接在模型中删除 <%=dr["pa_canshu"]%>这段
1
查看完整版本: 69行又错误,请大神指点