“/”应用程序中的服务器错误。
--------------------------------------------------------------------------------运行时错误 
说明: 服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止远程查看应用程序错误的详细信息(出于安全原因)。但可以通过在本地服务器计算机上运行的浏览器查看。 详细信息: 若要使他人能够在远程计算机上查看此特定错误信息的详细信息,请在位于当前 Web 应用程序根目录下的“web.config”配置文件中创建一个 <customErrors> 标记。然后应将此 <customErrors> 标记的“mode”属性设置为“Off”。
<!-- Web.Config 配置文件 --><configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 注释: 通过修改应用程序的 <customErrors> 配置标记的“defaultRedirect”属性,使之指向自定义错误页的 URL,可以用自定义错误页替换所看到的当前错误页。
<!-- Web.Config 配置文件 --><configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
 

解决方案 »

  1.   

    你先把
    <configuration> 
        <system.web> 
            <customErrors mode="Off"/> 
        </system.web> 
    </configuration> 这个节点生成Off试试,看看是不是有错误提示
      

  2.   

    在项目中添加Global.asax 记录错误消息,这对于你以后也是维护也是很有用的代码如下 参考一下:
    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.SessionState;
    using System.IO;
    namespace AutoVIP
    {
        public class Global : System.Web.HttpApplication
        {
            System.Timers.Timer myTimer;
            protected void Application_Start(object sender, EventArgs e)
            {        }        protected void Application_End(object sender, EventArgs e)
            {
                //  在应用程序关闭时运行的代码
            }
            protected void Application_Error(object sender, EventArgs e)
            {
                try
                {
                    Exception baseException = base.Server.GetLastError().GetBaseException();
                    if (baseException.Message.IndexOf("System.OutOfMemoryException") > -1)
                    {
                        GC.Collect();
                        GC.WaitForPendingFinalizers();
                        base.Response.Redirect(base.Request.RawUrl);
                    }
                    else
                    {
                        string message = ("[错误信息]: " + baseException.Message + baseException.StackTrace) + "[错误页面]: " + base.Request.RawUrl;
                        string path = HttpContext.Current.Server.MapPath("/ErrorLog.txt");
                        LogError(message, path);
                    }
                }
                catch (Exception exception2)
                {
                    Console.WriteLine(exception2.Message);
                }
            }
           
            private static void LogError(string message,string path)
            {
                StreamWriter writer = null;
                try
                {
                    writer = new StreamWriter(path, true, System.Text.Encoding.Default);
                    writer.WriteLine("<br><br>");
                    writer.WriteLine("## " + DateTime.Now + "  " + message + "  ");
                    writer.Close();
                }
                catch
                {
                    if (writer != null) writer.Close();
                }
            }
        }
    }
      

  3.   

    <customErrors mode="Off"/> 
    设置为Off后的错误提示还是原来的?
      

  4.   

    <customErrors mode="Off"/> 
    看看具体错误
    框架配置
    权限设置
    程序错误