WebSecurity - CurrentUserName 属性

返回上一级

WebSecurity 对象 CurrentUserName 属性是当前用户在 WebSecurity 数据库中用户资料表中的名称

语法

WebSecurity.CurrentUserName

范例

C#

@{
    string value;
    value = WebSecurity.CurrentUserId;
}
<p>Welcome @value</p>

VB

@Code
Dim value as String
value=WebSecurity.CurrentUserName
End Code
<p>Welcome @value</p>

说明

CurrentUserName 属性是只读的,不能通过代码更改

错误和异常

在下面的情况下,任何对 WebSecurity 对象的访问将抛出一个 InvalidOperationException 异常

  1. InitializeDatabaseConnection() 方法没有被调用

  2. SimpleMembership 没有初始化(或者在网站配置中禁用)

命名空间

WebMatrix.WebData

Assembly

WebMatrix.WebData.dll

返回上一级

ASP.NET 基础教程

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.