How to replace Request.IsAjaxRequest() in ASP.NET Core
By FoxLearn Published on Feb 18, 2024 671
This post shows you how to replace Request.IsAjaxRequest() in ASP.NET Core
You can't find Request.IsAjaxRequest() method in ASP.NET Core.
To check your ajax request in ASP.NET Core you can use Context.Request.Headers.
var ajaxRequest = Context.Request.Headers["X-Requested-With"] == "XMLHttpRequest";
I hope so, you can solve your problem.
- Boost Your ASP.NET Core Website Performance with .NET Profiler
- The name 'Session' does not exist in the current context
- Implementing Two-Factor Authentication with Google Authenticator in ASP.NET Core
- How to securely reverse-proxy ASP.NET Core
- How to Retrieve Client IP in ASP.NET Core Behind a Reverse Proxy
- Only one parameter per action may be bound from body in ASP.NET Core
- The request matched multiple endpoints in ASP.NET Core
- How to Create a custom model validation attribute in ASP.NET Core
Categories
Popular Posts
11 Things You Didn't Know About Cloudflare
Dec 19, 2024
AdminKit Bootstrap 5 HTML5 UI Kits Template
Nov 17, 2024
RuangAdmin Template
Nov 13, 2024
Admin BSB Free Bootstrap Admin Dashboard
Nov 14, 2024