用户为空时自动填充视图

时间:2012-09-06 18:10:05

标签: c# asp.net-mvc asp.net-mvc-3 razor

我愿意做以下(C#MVC 3.0):   - 当用户按下按钮时更新视图。 - 这样的按钮有一个认证表格。 - 如果他在表单中输入的用户和传递是正常的,那么他动态更新的页面(这样用户仍然会觉得页面不在同一页面中)。

这是这样的:

Auto-refreshing div with jQuery - setTimeout or another method?

据说这应该有所帮助,但它没有

https://stackoverflow.com/questions/10820075/dynamically-creating-a-custom-user-control-then-rendering-it-in-a-mvc-razor-view

1 个答案:

答案 0 :(得分:0)

你指的是这个吗?

@If Request.IsAuthenticated Then

    @<text>Welcome <strong>@User.Identity.Name</strong>!
    [ @Html.ActionLink("Log Off", "LogOff", "Account") ]</text>

Else

    @:[ @Html.ActionLink("Log On", "LogOn", "Account") ]

End If

注意:这是VB.NET。