أحدث البرامج التعليمية وتطوير الشبكة
×

ASP.NET البرنامج التعليمي

ASP.NET الصفحة الرئيسية ASP.NET مقدمة

WP البرنامج التعليمي

WebPages مقدمة WebPages موس الحلاقة WebPages نسق WebPages المجلدات WebPages عالمي WebPages أشكال WebPages الأجسام WebPages ملفات WebPages قواعد بيانات WebPages المساعدون WebPages WebGrid WebPages الرسوم البيانية WebPages البريد الإلكتروني WebPages PHP WebPages نشر WebPages أمثلة

WP المراجع

WebPages فصول WebPages أمن WebPages قاعدة البيانات WebPages الواجهه WebPages المساعدون

ASP.NET Razor

Razor مقدمة Razor بناء الجملة Razor C# المتغيرات Razor C# الحلقات Razor C# منطق Razor VB المتغيرات Razor VB الحلقات Razor VB منطق

ASP.NET MVC

MVC مقدمة MVC تطبيق MVC المجلدات MVC نسق MVC التحكم MVC المشاهدات MVC قاعدة البيانات MVC نموذج MVC أمن MVC HTML المساعدون MVC نشر MVC مرجع

WF دروس

WebForms مقدمة WebForms الصفحات WebForms ضوابط WebForms أحداث WebForms أشكال WebForms حالة العرض WebForms مربع الكتابة WebForms زر WebForms ربط البيانات WebForms قائمة مجموعة WebForms جدول هاش WebForms SortedList WebForms XML ملفات WebForms مكرر WebForms Datalist على WebForms دبكونيكشن WebForms Master الصفحات WebForms ملاحة WebForms أمثلة


 

ASP.NET MVC - الأمن


لتعلم ASP.NET MVC، نحن بناء تطبيق شبكة الإنترنت.

الجزء الثامن: إضافة الأمن.


تطبيق الأمن MVC

يحتوي المجلد نماذج الفئات التي تمثل نموذج الطلب.

مرئي مطور ويب تلقائيا بإنشاء ملف AccountModels.cs الذي يحتوي على نماذج للمصادقة التطبيق.

AccountModels يحتوي على LogOnModel، وChangePasswordModel، وRegisterModel:

نموذج


لتغيير كلمة المرور نموذج

public class ChangePasswordModel
{

[Required]
[ DataType(DataType.Password) ]
[ Display(Name = "Current password") ]
public string OldPassword { get; set; }

[Required]
[ StringLength(100, ErrorMessage = "The {0} must be at least {2}      characters long.", MinimumLength = 6) ]
[ DataType(DataType.Password) ]
[ Display(Name = "New password") ]
public string NewPassword { get; set; }

[ DataType(DataType.Password) ]
[ Display(Name = "Confirm new password") ]
[ Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.") ]
public string ConfirmPassword { get; set; }

}

نموذج تسجيل الدخول

public class LogOnModel
{

[Required]
[ Display(Name = "User name") ]
public string UserName { get; set; }

[Required]
[ DataType(DataType.Password) ]
[ Display(Name = "Password") ]
public string Password { get; set; }

[ Display(Name = "Remember me?") ]
public bool RememberMe { get; set; }

}

سجل نموذج

public class RegisterModel
{

[Required]
[ Display(Name = "User name") ]
public string UserName { get; set; }

[Required]
[ DataType(DataType.EmailAddress) ]
[ Display(Name = "Email address") ]
public string Email { get; set; }

[Required]
[ StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long." , MinimumLength = 6) ]
[ DataType(DataType.Password) ]
[ Display(Name = "Password") ]
public string Password { get; set; }

[ DataType(DataType.Password) ]
[ Display(Name = "Confirm password") ]
[ Compare("Password", ErrorMessage = "The password and confirmation password do not match.") ]
public string ConfirmPassword { get; set; }

}