How to get @Url.Action url in a separate script file?
By FoxLearn 2/16/2024 9:31:22 AM 474
This post shows you How to get @Url.Action url in a separate script file
@section Scripts{ <script type="text/javascript"> var app = app || {}; app.Urls = app.Urls || {}; app.Urls.baseUrl = '@Url.Content("~")'; app.Urls.addEditUrl = '@Url.Action("AddEdit")'; app.Urls.getListUrl = '@Url.Action("GetList")'; </script> <script src="~/js/external.js"></script> }
In your javascript file, you can easily get url from @Url.Action in ASP.NET or ASP.NET Core as shown below.
var url = app.Urls.getListUrl
I hope you you can solve the problem jquery url action in external js file
- How to convert voice to text in Javascript
- LET vs VAR in JavaScript Variable Declarations
- How to add voice commands to webpage in Javascript
- How to capture an image in javascript
- How to Build Your Own JavaScript Library
- How to reverse a string properly in Javascript
- How to bypass 'Access-Control-Allow-Origin' error with XMLHttpRequest
- What is Hoisting in JavaScript
Categories
Popular Posts
Stisla Admin Dashboard Template
11/18/2024
Admin Tailwind CSS Admin Dashboard Template
11/18/2024
Portal HTML Bootstrap
11/14/2024