我正在使用asp.net加载图片时它给出了我的错误,如下所示。如果我在aspx文件中对页面加载代码进行注释,它可以正常工作但不能使用它。
当我点击按钮并使用像这样的javascript转到另一个页面时
location.href = "productDetail.aspx";
它给出了这样的错误 我尝试了很多,以找出问题,有人说,设置
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!--<httpRuntime requestValidationMode="2.0" maxRequestLength="600000" />-->
<httpRuntime maxRequestLength="600000" />
</system.web>
请帮助我,我最近2天就被困在这里。
答案 0 :(得分:0)
检查:
"productDetail.aspx"
存在。"productDetail.aspx"
位于某个文件夹中,但您尚未在href
Page_Load
上保留断点后,您是否在断点处停止?如果是,那么您需要发布Page_Load
代码,以便有人提供帮助。