왼쪽 상단 사진 클릭 후 비밀번호 변경
아웃룩의 파일을 누른후 아래와 같이 들어가 변경한 비밀번호를 입력 후 계정설정 테스트를 하고 확인을 누릅니다.
왼쪽 상단 사진 클릭 후 비밀번호 변경
아웃룩의 파일을 누른후 아래와 같이 들어가 변경한 비밀번호를 입력 후 계정설정 테스트를 하고 확인을 누릅니다.
ASP.CORE 에서는 환경설정을 통해서 설정가능하다
services.AddMvc() // Json 옵션
.AddJsonOptions(opt =>
{
opt.SerializerSettings.DateTimeZoneHandling = Newtonsoft.Json.DateTimeZoneHandling.Local;
});
| Custom ASP.NET 인증서비스 사용하기 (0) | 2012.03.07 |
|---|
{
// Add framework services.
services.AddMvc();
services.AddSingleton<ITempDataProvider, CookieTempDataProvider>();
services.AddSingleton<IConfigurationRoot>(Configuration);
CookieAuthenticationOptions Options = new CookieAuthenticationOptions();
Options.AuthenticationScheme = CookieAuthenticationDefaults.AuthenticationScheme;
Options.LoginPath = new PathString("/Account/Login/");
Options.AutomaticAuthenticate = true;
Options.AutomaticChallenge = true;
Options.CookieHttpOnly = true;
| .NET Core Entity Framework 사용방법 (0) | 2017.02.28 |
|---|