ASP.NET CORE 5.0 MVC Articles
-
Active Directory Web API Application Authentication by passing JWT token from an MVC application to MVC Web API application
Murugan Andezuthu Dharmaratnam | 18 August 2021 | 6051
Here we have two application. MVC application with front end UI and a backend asp .net mvc web api application. In this article we will discuss about how to authenticate the web api application using the token from asp .net mvc front end application. Front end application stores the token and when it makes a get request to the backend web api application it sends the token from front end application as authorization bearer token in the http header. … CONTINUE READING
-
azure ad authentication the reply URL specified does not match the reply URLs configured http instead of https in redirect uri
Murugan Andezuthu Dharmaratnam | 16 August 2021 | 2158
azure ad authentication the reply URL specified in the request does not match the reply URLs configured for the application http instead of https in redirect_uri … CONTINUE READING
-
asp net core 5.0 how to get access token of user authenticated using active directory
Murugan Andezuthu Dharmaratnam | 13 August 2021 | 1666
-
GetAccessTokenForUserAsync No account or login hint was passed to the AcquireTokenSilent call
Murugan Andezuthu Dharmaratnam | 13 August 2021 | 2229
GetAccessTokenForUserAsync No account or login hint was passed to the AcquireTokenSilent call … CONTINUE READING
-
system.unauthorizedaccessexception access to the path .net core
Murugan Andezuthu Dharmaratnam | 18 March 2021 | 2968
In my asp .net core 5.0 MVC application, everything was working fine while I was running the app using visual studio. But I get this error system.unauthorizedaccessexception access to the path when I deployed to the server on iis . … CONTINUE READING
-
Newtonsoft.Json.Linq.JValue Cannot convert method group Value to non-delegate type object
Murugan Andezuthu Dharmaratnam | 11 March 2021 | 3
I am getting this error when I try to parse the dynamic json object to string . Cannot convert method group 'Value', Value, to non-delegate type, 'object', Did you intend to invoke the method, non-delegate type, Value … CONTINUE READING
-
asp .net core 5.0 mvc jsonserializer.deserialize to dynamic
Murugan Andezuthu Dharmaratnam | 11 March 2021 | 2172
how to deserialize to dynamic using jsonserializer without passing a type … CONTINUE READING
-
getting value from appsettings.json in asp .net core 5.0 mvc
Murugan Andezuthu Dharmaratnam | 07 March 2021 | 1671
how can I read a string value from appsettings.json in asp .net core 5.0 MVC … CONTINUE READING
-
how to save IFormFile to disk
Murugan Andezuthu Dharmaratnam | 26 February 2021 | 3403
You can save IFormFile to disk using IFormFile .CopyTo function. Check the below code. … CONTINUE READING
-
system.web.httppostedfile equivalent in asp .net 5.0 core mvc
Murugan Andezuthu Dharmaratnam | 26 February 2021 | 4245
HttpPostedFileBase doesn't exist in ASP.NET Core. You should use IFormFile now, instead … CONTINUE READING
-
Exception CS0656 C# Missing compiler required member Microsoft.CSharp.RuntimeBinder.Binder.Convert
Murugan Andezuthu Dharmaratnam | 26 February 2021 | 3723
Exception CS0656 C# Missing compiler required member Microsoft.CSharp.RuntimeBinder.Binder.Convert … CONTINUE READING
-
What is the alternative of HttpContext.Current.Request.Files in asp .net core 5.0 mvc
Murugan Andezuthu Dharmaratnam | 26 February 2021 | 3475
You can use IFormFileCollection files = HttpContext.Request.Form.Files; insted of System.Web.HttpFileCollection files = System.Web.HttpContext.Current.Request.Files in you asp .net core 5.0 mvc application. … CONTINUE READING
-
server.mappath equivalent in asp.net core 5.0 mvc
Murugan Andezuthu Dharmaratnam | 26 February 2021 | 3254
Web application developers who code in classic asp, asp .net, and asp .net MVC have always relied on server.mappath to resolve file paths. But this method is no longer available in asp .net core 5.0 MVC. The is to use IHostEnvironment … CONTINUE READING
-
Passing Data from Controller To View
Rakesh Kumar Sutar | 17 February 2021 | 1800
Passing Data from Controller To View … CONTINUE READING
-
ASP.NET Core 5.0 Scaffolding
Rakesh Kumar Sutar | 10 February 2021 | 3024
Scaffolding in ASP.NET Core 5.0 … CONTINUE READING
-
What is JSON?
Rakesh Kumar Sutar | 10 February 2021 | 1684
What is JSON? … CONTINUE READING
-
What is Ajax?
Rakesh Kumar Sutar | 09 February 2021 | 1698
What is Ajax? … CONTINUE READING
-
ASP.NET Core 5.0 MVC claims based authentication and authorization
Murugan Andezuthu Dharmaratnam | 08 February 2021 | 2105
In this post, I am going to talk about claims-based authentication and authorization … CONTINUE READING
-
ASP.NET CORE 5.0 MVC CURD operations using List
Rakesh Kumar Sutar | 04 February 2021 | 1889
ASP.NET CORE 5.0 MVC CURD operations using List … CONTINUE READING
-
ASP.NET Core 5.0 Partial View
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3287
ASP.NET Core 5.0 Partial View … CONTINUE READING
-
ASP.NET Core 5.0 View Bag View Data Temp Data
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 1797
-
ASP.NET Core 5.0 MVC HTML Helpers
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3128
HTML Helpers in ASP.NET Core 5.0 MVC … CONTINUE READING
-
ASP.NET Core 5.0 MVC Razor Syntax
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 2958
Razor Syntax in ASP.NET Core 5.0 MVC … CONTINUE READING
-
ASP.NET Core 5.0 MVC View
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 1757
ASP.NET Core 5.0 MVC View … CONTINUE READING
-
ASP.NET Core 5.0 MVC Routing
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3209
Routing in ASP.NET Core 5.0 MVC … CONTINUE READING
-
ASP.NET core 5.0 MVC Controller
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3435
MVC controller in ASP.NET core 5.0 … CONTINUE READING
-
ASP.NET core 5.0 MVC hello world application
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3201
Hello world Application in ASP.NET core 5.0 MVC … CONTINUE READING
-
What is ASP.NET core 5.0 MVC
Murugan Andezuthu Dharmaratnam | 18 January 2021 | 3223
What is ASP.NET core 5.0 MVC. … CONTINUE READING