WebSecurity CurrentUserName 属性

websecurity 属性 - currentusername

websecurity 对象 websecurity 对象

定义

currentusername 属性是当前用户在 websecurity 数据库中用户资料表中的名称。

c# 和 vb 语法

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:

  • initializedatabaseconnection() 方法没有被调用
  • simplemembership 没有初始化(或者在网站配置中禁用)

技术数据

名称
namespace webmatrix.webdata
assembly webmatrix.webdata.dll

websecurity 对象 websecurity 对象
相关文章