©
本文档使用 PHP中文网手册 发布
CurrentUserName 属性是当前用户在 WebSecurity 数据库中用户资料表中的名称。
WebSecurity.CurrentUserName
@{
string value;
value=WebSecurity.CurrentUserId;
}
<p>Welcome @value</p>
@Code
Dim value as String
value=WebSecurity.CurrentUserName
End Code
<p>Welcome @value</p>
CurrentUserName 属性是只读的。它不能通过代码更改。
在下面的情况下,任何对 WebSecurity 对象的访问将抛出一个 InvalidOperationException:
名称 | 值 |
---|---|
Namespace | WebMatrix.WebData |
Assembly | WebMatrix.WebData.dll |