我在asp.net中加载页面错误

时间:2012-03-25 16:06:03

标签: c# asp.net

我正在使用asp.net加载图片时它给出了我的错误,如下所示。如果我在aspx文件中对页面加载代码进行注释,它可以正常工作但不能使用它。

当我点击按钮并使用像这样的javascript转到另一个页面时

location.href = "productDetail.aspx";

它给出了这样的错误 enter image description here    我尝试了很多,以找出问题,有人说,设置

<system.web>
    <compilation debug="true" targetFramework="4.0" />
    <!--<httpRuntime requestValidationMode="2.0" maxRequestLength="600000" />-->
    <httpRuntime maxRequestLength="600000" />

  </system.web>

在web.config中,其中一些人说检查你的网址。这是我的网址  http://localhost:60340/%3Ca%20href=%27AllScripts/productLightBox/images/Jellyfish178.jpg%27%20class=%27lightview%27%20data-lightview-group=%27example%27%20%20data-lightview-title=%22Navigation%22%20data-lightview-caption=%22This%20is%20a%20testing%20quick%20overview%20where%20you%20can%20add%20more%20view%22%3E%20%3Cimg%20src=%27AllScripts/productLightBox/images/thumbnails/Jellyfish178.jpg%27%20alt=%27%27%20/%3E%3C/a%3E

请帮助我,我最近2天就被困在这里。

1 个答案:

答案 0 :(得分:0)

检查:

  1. "productDetail.aspx"存在。
  2. "productDetail.aspx"位于某个文件夹中,但您尚未在href
  3. 中包含其名称
  4. 单击目标链接并在目标页面的Page_Load上保留断点后,您是否在断点处停止?如果是,那么您需要发布Page_Load代码,以便有人提供帮助。