<WebSecurity Przedmiot
Definicja
Nieruchomość CurrentUserName to nazwa bieżącego użytkownika w tabeli profilu użytkownika w bazie danych WebSecurity.
C # i VB Składnia
WebSecurity.CurrentUserName
Przykłady
Przykład C #
@{
string value;
value=WebSecurity.CurrentUserName;
}
<p>Welcome
@value</p>
Przykład VB
@Code
Dim value as String
value=WebSecurity.CurrentUserName
End Code
<p>Welcome @value</p>
Uwagi
Nieruchomość CurrentUserName jest tylko do odczytu. To nie może być zmieniony za pomocą kodu.
Błędy i wyjątki
Każdy dostęp do obiektu WebSecurity rzuca InvalidOperationException jeżeli:
- InitializeDatabaseConnection() metoda nie została wywołana
- SimpleMembership nie jest zainicjowana (or disabled in the website configuration)
Dane techniczne
Nazwa | Wartość |
---|---|
Przestrzeń nazw | WebMatrix.WebData |
Montaż | WebMatrix.WebData.dll |
<WebSecurity Przedmiot