asp.net – 我的C#Web应用程序项目中缺少IdentityConfig.cs
发布时间:2020-12-16 09:41:12 所属栏目:asp.Net 来源:网络整理
导读:我按照下面的步骤链接,以便我可以添加电子邮件验证到我的项目: http://www.asp.net/web-forms/overview/security/create-a-secure-aspnet-web-forms-app-with-user-registration,-email-confirmation-and-password-reset#addRes 我想知道IdentityConfig.cs
我按照下面的步骤链接,以便我可以添加电子邮件验证到我的项目:
http://www.asp.net/web-forms/overview/security/create-a-secure-aspnet-web-forms-app-with-user-registration,-email-confirmation-and-password-reset#addRes 我想知道IdentityConfig.cs在哪里,我在我的项目中找不到这个文件. 而不是IdentityConfig.cs,我可以在哪个文件中插入我的代码? 解决方法
哦,天哪,我有同样的问题,所以我将把我的旧项目用于Identityconfig.cs
using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; using System.Web; using Microsoft.AspNet.Identity; using Microsoft.AspNet.Identity.EntityFramework; using Microsoft.AspNet.Identity.Owin; using Microsoft.Owin; using Microsoft.Owin.Security; using MyEuAdd.Models; namespace MyEuAdd { public class EmailService : IIdentityMessageService { public Task SendAsync(IdentityMessage message) { // Plug in your email service here to send an email. return Task.FromResult(0); } } public class SmsService : IIdentityMessageService { public Task SendAsync(IdentityMessage message) { // Plug in your SMS service here to send a text message. return Task.FromResult(0); } } // Configure the application user manager used in this application. UserManager is defined in ASP.NET Identity and is used by the application. public class ApplicationUserManager : UserManager<ApplicationUser> { public ApplicationUserManager(IUserStore<ApplicationUser> store) : base(store) { } public static ApplicationUserManager Create(IdentityFactoryOptions<ApplicationUserManager> options,IOwinContext context) { var manager = new ApplicationUserManager(new UserStore<ApplicationUser>(context.Get<ApplicationDbContext>())); // Configure validation logic for usernames manager.UserValidator = new UserValidator<ApplicationUser>(manager) { AllowOnlyAlphanumericUserNames = false,RequireUniqueEmail = true }; // Configure validation logic for passwords manager.PasswordValidator = new PasswordValidator { RequiredLength = 6,RequireNonLetterOrDigit = true,RequireDigit = true,RequireLowercase = true,RequireUppercase = true,}; // Configure user lockout defaults manager.UserLockoutEnabledByDefault = true; manager.DefaultAccountLockoutTimeSpan = TimeSpan.FromMinutes(5); manager.MaxFailedAccessAttemptsBeforeLockout = 5; // Register two factor authentication providers. This application uses Phone and Emails as a step of receiving a code for verifying the user // You can write your own provider and plug it in here. manager.RegisterTwoFactorProvider("Phone Code",new PhoneNumberTokenProvider<ApplicationUser> { MessageFormat = "Your security code is {0}" }); manager.RegisterTwoFactorProvider("Email Code",new EmailTokenProvider<ApplicationUser> { Subject = "Security Code",BodyFormat = "Your security code is {0}" }); manager.EmailService = new EmailService(); manager.SmsService = new SmsService(); var dataProtectionProvider = options.DataProtectionProvider; if (dataProtectionProvider != null) { manager.UserTokenProvider = new DataProtectorTokenProvider<ApplicationUser>(dataProtectionProvider.Create("ASP.NET Identity")); } return manager; } } // Configure the application sign-in manager which is used in this application. public class ApplicationSignInManager : SignInManager<ApplicationUser,string> { public ApplicationSignInManager(ApplicationUserManager userManager,IAuthenticationManager authenticationManager) : base(userManager,authenticationManager) { } public override Task<ClaimsIdentity> CreateUserIdentityAsync(ApplicationUser user) { return user.GenerateUserIdentityAsync((ApplicationUserManager)UserManager); } public static ApplicationSignInManager Create(IdentityFactoryOptions<ApplicationSignInManager> options,IOwinContext context) { return new ApplicationSignInManager(context.GetUserManager<ApplicationUserManager>(),context.Authentication); } } 希望它对你有所帮助,我不确定但我认为在Visual Studio 2013的Update ver.2中我们没有IdentityConfig.cs. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- ASP.NET:开始<%%>的'#'是什么意思?
- asp.net – 什么是system.globalization它和本地化有什么区
- JSON字符串反序列化成对象_部分属性值反序列化失败
- 在ASP.NET中接收POST数据
- asp.net-mvc – 使用ASP.NET MVC的Piranha CMS路由问题
- ASP.NET Core 2.2 JWT AUTH
- asp.net-mvc – 无法在asp mvc项目中从iis上的Content文件夹
- asp.net – 使用SQLBulkCopy插入/更新数据库
- asp.net-membership – 覆盖ASP.NET MVC 4中的ASP.NET成员资
- asp.net-mvc – 如何从ASP.Net MVC列表页面使用jQuery UI模
推荐文章
站长推荐
- asp.net – 如何在运行时更改页面位置
- asp.net-mvc – ASP.NET MVC:将会话状态保存在类
- 安装程序 – 无法安装ASP.NET MVC3 RTM?
- asp.net-mvc-4 – 在asp.net MVC URL中重写或更改
- asp.net – 过程或函数“”需要参数“”,这是未提
- asp.net-mvc – MVC Preview 5 – 将视图呈现为字
- ASP.NET Webforms验证框架的建议
- ASP.NET页面创建的事件序列
- 使用Asp.Net文本框的Bootstrap Datepicker
- asp.net – DropDownList的SelectedIndexChanged
热点阅读