このセクションに新しい css ファイルを指定する必要がある Web アプリケーションがあります。
<section id="loginForm" >
<h2>Connecter à notre application</h2>
@using (Html.BeginForm(new { ReturnUrl = ViewBag.ReturnUrl })) {
@Html.AntiForgeryToken()
@Html.ValidationSummary(true)
<fieldset>
<legend>Formulaire de connexion</legend>
<ol>
<li>
@Html.Label("Name")
@Html.TextBox("Name")
</li>
<li>
@Html.Label("Password")
@Html.Password("Password")
</li>
</ol>
<input type="submit" value="Se connecter" />
</fieldset>
}
</section>
たとえば、ホール ビューは css ファイルに関連付けられており、このセクションだけにX
別の css ファイルを関連付けたいと考えています。Y
これどうやってするの?