<WebSecurity วัตถุ
คำนิยาม
คุณสมบัติ CurrentUserName เป็นชื่อของผู้ใช้ในปัจจุบันในตารางโปรไฟล์ของผู้ใช้ในฐานข้อมูล WebSecurity ที่
C # และ VB ไวยากรณ์
WebSecurity.CurrentUserName
ตัวอย่าง
ตัวอย่างเช่น C #
@{
string value;
value=WebSecurity.CurrentUserName;
}
<p>Welcome
@value</p>
ตัวอย่างเช่น VB
@Code
Dim value as String
value=WebSecurity.CurrentUserName
End Code
<p>Welcome @value</p>
หมายเหตุ
สถานที่ให้บริการ CurrentUserName จะอ่านเท่านั้น มันไม่สามารถเปลี่ยนแปลงได้ตามรหัส
ข้อผิดพลาดและข้อยกเว้น
การเข้าถึงใด ๆ ไปยังวัตถุ WebSecurity พ่น InvalidOperationException หาก:
- InitializeDatabaseConnection() วิธีการยังไม่ได้รับการเรียกว่า
- SimpleMembership ไม่ได้เริ่มต้น (or disabled in the website configuration)
ข้อมูลทางเทคนิค
ชื่อ | ความคุ้มค่า |
---|---|
namespace | WebMatrix.WebData |
การชุมนุม | WebMatrix.WebData.dll |
<WebSecurity วัตถุ