How to get @Url.Action url in a separate script file?
By FoxLearn Published on Feb 16, 2024 601
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 use sweetalert2
- How to Pass string parameter in an onclick function
- How to format number with commas and decimal in Javascript
- What does 'use strict;' means in Javascript
- How to detect if caps lock is pressed in Javascript
- How to create a Custom Event in Javascript
- How to Check if an Object Has a Property Properly in JavaScript
- How to convert an Uint8Array to string in Javascript
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