我做的页面,每当点击按钮向服务器提交东西时候,都显示个大白屏。
有时正常有时不正常。
想用断点跟踪一下,在本地机器上就不出现。偏偏放到服务器上就出现这种情况。
快被烦死了,各位大哥求求小妹!

解决方案 »

  1.   

    从CSDN里搜出来两个贴子,说的情况和我遇到的类似,到最后都没能解决。
    各位高手,帮我看看啦!
      

  2.   

    查看一下客户端的代码看看,到底是什么HTML代码。
      

  3.   

    我用的DataGrid控件,第一次加载全部数据,没有问题,再根据条件筛选以后,点查询就返不回来东西了,出现一个大白屏
      

  4.   

    private void Page_Load(object sender, System.EventArgs e)
    {
    // 在此处放置用户代码以初始化页面
    if(!IsPostBack)
    {
    BoundList_Hy();
    BoundList_Rq();
    if(Request["stockcode"]==null)
    {
    FillPage("0","0");
    }
    else
    {
    FillPage("3",Request["stockcode"]);
    }
    }
    else
    {
    if(Request["stockcode"]!=null&&Request["stockcode"]!="")
    FillPage("3",Request["stockcode"]);
    }
    }
      

  5.   

    我晕,我也遇到了,客户那边出现这种问题,但我这边从来没遇到过,是什么问题啊??、
    T_T急死了T_T
      

  6.   

    白屏的页面你右键看一下源码看看。
    你把web.config里面的debug改为false看看。这里有一篇解决办法,但不知道是不是你说的情况。
    http://support.microsoft.com/default.aspx?scid=kb;en-us;325093
      

  7.   

    如果本地和远端不一样,那么很有可能是如下原因:Custom errors are enabled in the Web.config file for an application. For example: <configuration>
         <system.web>
             <customErrors defaultRedirect="genericerror.htm" mode="remoteonly" />
         </system.web>
    </configuration>This configuration enables local clients to see the default ASP.NET detailed error pages but redirects remote clients to a custom page, genericerror.htm. This page could be an .aspx page as well. ASP.NET passes the path of the page on which the error occurred to the error page as a QueryString argument. Note that if the execution of the error page generates an error, a blank page is sent back to the remote client.