错误500浏览到在localhost上正常运行的网页

时间:2013-07-22 09:23:22

标签: c# sql-server asp.net-mvc razor

我在调试部署到IIS的MVC ASP.NET网页时遇到了麻烦。该网站完全适用于PC上的localhost。当我导航到同一网络上不同PC上的页面时,我收到此错误:

http://i.stack.imgur.com/N359Q.png

使用Fiddler2进行的进一步检查为我提供了以下信息,这是我从这个解决方案中可以看到的唯一调试信息:

Fiddler2 info

这是Layout.cshtml:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>@ViewBag.Title - Intranet Page</title>
        <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
        <meta name="viewport" content="width=device-width" />
        @Styles.Render("~/Content/css")
        @Scripts.Render("~/bundles/modernizr")
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
    <script src="/Scripts/application.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
        <header>
            <div class="content-wrapper">
                <div class="float-left">
                    <p class="site-title">@Html.ActionLink("IntranetPage", "Index", "Home")</p>
                </div>
                <div class="float-right">
                 <!--   <section id="login">
                    </div>
                    <div id="logindisplay">
                        Context.User.Identity.Name <strong>@Context.User.Identity.Name</strong>!
                    </section>  This works correctly to get DOMAIN/USERNAME-->
                </div>
            </div>
        </header>
        <div id="body">
            @RenderSection("featured", required: false)
            <section class="content-wrapper main-content clear-fix">
                @RenderBody()
            </section>
        </div>
        @Scripts.Render("~/bundles/jquery")
        @RenderSection("scripts", required: false)
    </body>
</html>

有问题的索引页面:

@model IEnumerable<WhoIs.Models.Employee>
@{
    ViewBag.Title = "Contoso Employees";
}
@section featured {
    <section class="featured">
        <div class="content-wrapper">
            <hgroup class="title">
                <h1>@ViewBag.Title.</h1>
            </hgroup>
        </div>
    </section>
}

      <label for="filter">Enter employee details here : </label>
      <input type="text" name="filter" value="" id="filter" />

<h2><strong>Users</strong> (<a href="/home/create" style="color: blue;">create new</a>)</h2>
<br />

<div style="min-height: 150px; font-size: 1.25em">
    <div style="margin-bottom: .5em">
        <table><thead><tr><th>Name</th><th>Branch</th><th>Phone No.</th><th>Username</th><th>Email</th></tr></thead>
            <tbody>
            @foreach ( var prod in Model )
                {
                    <tr>
                        <td>@prod.FullName</td> 
                        <td>@prod.Branch</td> 
                        <td>@prod.PhoneNo</td> 
                        <td>@prod.DomainAC</td> 
                        <td>@prod.Email</td> 
                        @if (User.IsInRole(@"Admins") || User.Identity.Name == prod.DomainAC) {
                                <td><a href="/home/edit/@prod.Id"  style="color: blue;">edit</a></td>
                         }else{
                         <td>User => @User.ToString()</td>   
                        }
                    </tr>
                 }
                 </tbody>
            </table>
        </div>
     </div>

这些会在Contoso上呈现一个包含员工列表的简单页面,使管理员和用户自己能够编辑其详细信息。任何人都可以看到可能导致我的问题吗?我彻底调查了这个没有结果。

我将.edmx文件添加到我的models文件夹中,该文件夹链接到远程数据库Employees。我试图编辑web.config以通过添加行来提供有关可能存在的问题的更多信息:             

但我仍然只收到上面的错误信息。

有人能告诉我可能导致这个问题的原因吗?注释掉我从数据库中检索的部分可以消除错误,但我无法解决它。

非常感谢。

编辑:

Web.config提取:

<system.web>
    <compilation debug="true"/>
    <deployment retail="false" />
    <customErrors mode="Off">
    </customErrors>
    <httpHandlers>
      <add path="*" verb="*" type="System.Web.HttpNotFoundHandler"/>
    </httpHandlers>

    <pages
        validateRequest="false"
        pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxx"
        pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxx"
        userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxxx">
      <controls>
        <add assembly="System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=xxxxxxxxxxxxxxx" namespace="System.Web.Mvc" tagPrefix="mvc" />
      </controls>
    </pages>
  </system.web>

1 个答案:

答案 0 :(得分:0)

我有类似的问题,我遇到了很多陷阱。我会尝试提供完整的清单,以帮助您检查它们:

  • 允许在IIS中进行目录浏览
  • 在物理保存网站的文件夹中,检查IUSR和IIS_IUSR是否具有阅读和浏览权限
  • 检查您是否允许访问防火墙中的端口
  • 检查IP地址是否正确。您的外部IP可能无法重定向到内部IP。或者也许(我犯了菜鸟错误)你试图浏览内部IP而不是外部IP。

我希望这会有所帮助。如果有任何问题,不要害怕问。