新手来了
我在 VS2010 中创建了一个空的 MVC 项目,我正在尝试格式化我的视图以进行身份验证。因此,我已将此添加到 site.css:
.rez
{
color: Olive;
}
这是我的观点:
@using (Html.BeginForm())
{
<div>
<label class="rez">Username</label><input type="text" name="Username"/>
</div>
<div>
Password<input type="password" name="Password"/>
</div>
<div>
<input type="submit" name="Log"/>
</div>
}
它不工作。我还没有触及路由或捆绑配置。我已经为身份验证配置了 web.config。_ViewStart 和 _Layout 也没有改变。
我做错了什么,更重要的是如何调试这个问题。我正在使用铬。