简体   繁体   中英

converting URL to Action Link @url.action

I have problem with IIS does not read the URL. Failed to load resource: the server responded with a status of 503 (Service Unavailable)

My project is on Asp.net MVC I have used a Jqx grid on my project but the grid does not load data on IIS.

How can I convert the URL to Action Link @url.action, so the IIS can read?

My URL on my grid.

url: "/Home/GetIMScompinfo?CompanyName=" + $("#CompanyName").val() + "&StoreName=" + $("#StoreName").val() + "&ComputerName=" + $("#ComputerName").val() + params

url: "/Home/GetSubItems?scopeId=" + id

url: "/Home/GetIMScompinfo?CompanyName=" + $("#CompanyName").val() + "&StoreName=" + $("#StoreName").val() + "&ComputerName=" + $("#ComputerName").val() + params url: "/Home/GetSubItems?scopeId=" + id

I don't know what is the difference between the two getting the value. So I give the sample script for the first url.

<button class="btn-class" id="press" type="button" onclick="changeHref1()">Genrate first url</button>



<script type="text/javascript">
function changeHref1() {
    var url = '@Url.Action("About","Home")';
    var company = $('#CompanyName').val();
    var store = $('#StoreName').val();
    var computer = $('#ComputerName').val();
    window.location.href = url + '?CompanyName=' + company + '&StoreName=' + store + '&ComputerName=' + computer;
}

</script>

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM