4

最初の MVC4 プロジェクトを開発マシンから実稼働 IIS7.5 サーバーに展開したばかりですが、サーバー上で画像を正しく表示する際に問題が発生しています。

これは IIS7 のアクセス許可の問題でしょうか?

<input type="image" src="Content/Images/Product.png" runat="server" />

ここに画像の説明を入力

これをデスクトップで実行すると、画像は正しく表示されますが、サーバーにデプロイすると、標準の壊れたリンクの画像が表示されます。画像がサーバー上の正しいパスにあることを確認しました。

また、チルダ文字を使用するように src を変更しようとしましたsrc="~/Content/Images/Product.png"が、それでも機能しません

これは、site.css ファイルの読み込みにも影響を及ぼし始めています。

<head>
    <meta charset="utf-8" />
    <title>@ViewData("Title")</title>
    <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
    <script src="@Url.Content("~/Scripts/jquery-1.6.2.min.js")" type="text/javascript"></script>
    <script src="@Url.Content("~/Scripts/modernizr-2.0.6-development-only.js")" type="text/javascript"></script>
</head>

Chrome では、見つからず、どのブラウズにも読み込まれていないというエラーが表示されますが、ディスク上にあることを確認しました。 ここに画像の説明を入力

ここで何か奇妙なことが起こっています...

Web.Config

<?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=152368
  -->
<configuration>
  <configSections>
    <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
    <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
  </configSections>
  <appSettings>
    <add key="webpages:Version" value="1.0.0.0"/>
    <add key="ClientValidationEnabled" value="true"/>
    <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
  </appSettings>
  <system.web>
    <compilation debug="true" targetFramework="4.0"/>
    <authentication mode="Forms">
      <forms loginUrl="~/Account/LogOn" timeout="2880"/>
    </authentication>
    <pages controlRenderingCompatibilityVersion="4.0">
      <namespaces>
        <add namespace="System.Web.Helpers"/>
        <add namespace="System.Web.Mvc"/>
        <add namespace="System.Web.Mvc.Ajax"/>
        <add namespace="System.Web.Mvc.Html"/>
        <add namespace="System.Web.Routing"/>
        <add namespace="System.Web.WebPages"/>
      </namespaces>
    </pages>
    <profile defaultProvider="DefaultProfileProvider">
      <providers>
        <add name="DefaultProfileProvider" type="System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/"/>
      </providers>
    </profile>
    <membership defaultProvider="DefaultMembershipProvider">
      <providers>
        <add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
      </providers>
    </membership>
    <roleManager defaultProvider="DefaultRoleProvider">
      <providers>
        <add name="DefaultRoleProvider" type="System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/"/>
      </providers>
    </roleManager>
    <sessionState mode="InProc" customProvider="DefaultSessionProvider">
      <providers>
        <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection"/>
      </providers>
    </sessionState>
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false"/>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
        <bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="3.0.0.0"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
  <entityFramework>
    <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
  </entityFramework>
  <connectionStrings>
    <add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-QSmartRectification-20120731104636;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-QSmartRectification-20120731104636.mdf"/>
  </connectionStrings>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="Synchronise" />
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://172.30.66.20/QSmart/Synchronise/" binding="basicHttpBinding"
        bindingConfiguration="Synchronise" contract="QSmartRectificationProvider.ISyncProvider"
        name="Synchronise" />
    </client>
  </system.serviceModel>
</configuration>
4

4 に答える 4

7

これは、絶対パスの問題である可能性があります。ページがビュー ActionResult であり、デフォルトのルーティング ルールが適用される場合は、代わりに「../../content/product.png」を試すことができます。または、ヘルパー @Url.Content("~/content/product.png") を使用することもできます。絶対パスはブラウザでいつでも確認できます。

また、ルーティング ルールを確認し、コンテンツ フォルダーがコントローラーにマップされているかどうかを確認します。

于 2012-08-23T09:42:09.987 に答える
0

あなたはあなたの写真として server.MapPath("Images")+yourPhotoまたはMappath(".")+\\Images\\+あなたの写真としてそれにアクセスすることができます

于 2012-08-23T09:59:47.440 に答える
0

画像はどこに呼んでいますか?「表示」フォルダの1つにいる場合は、試してみてください src="../../Content/Images/Product.png"

注:それぞれ..が1つ上のフォルダーを意味します。

于 2012-08-23T09:30:14.230 に答える
0

前に「/」を付けてみましたか?

<input type="image" src="/Content/Images/Product.png" runat="server" />

もう 1 つの推測ではRouteExistingFiles、ルーティングでプロパティを true に設定した可能性があり、そのために CSS と画像が読み込まれていません。

于 2012-08-23T09:54:11.183 に答える