So I've got this MVC 3 application that has a dropdown that I use to populate a div via jquery. It works fine locally but when I deploy it to the server it's redirecting incorrectly. Here's my jquery:

$("#ddlCategoryMain").change(function () {
    $.post("/Home/Category/", { mileID: $(this).val() }, function (data) {
        refreshDiv($("div#main"), data);
    });
});

function refreshDiv(select, data) {
    select.html("");
    select.append(data);
}

Locally this works fine. But when deployed to my server it appears to be looking for http://myserver/Home/Category instead of http://myserver/mywebsite/Home/Category

I can fix it by simply adding the name of my application before the /Home/Category in the jquery function, but that doesn't feel right...

I've also tried to add ../, ~/, ../../ before the /Home but that made no difference.

Any solutions to this minor problem? Thanks!

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Option 1

Assuming your jQuery method is in your view you can use Url.Action()

Generates a fully qualified URL to an action method by using the specified action name and controller name.

$("#ddlCategoryMain").change(function () {
    $.post('<%=Url.Action("Category", "Home")%>', { mileID: $(this).val() }, function (data) {
        refreshDiv($("div#main"), data);
    });
});

Or this if you are using razor

$("#ddlCategoryMain").change(function () {
    $.post('@Url.Action("Category", "Home")', { mileID: $(this).val() }, function (data) {
        refreshDiv($("div#main"), data);
    });
});

Option 2

If the method is in an external js file you could declare a global variable in your view.

var myUrl = '@Url.Action("Category", "Home")';

and then in your $.post

$("#ddlCategoryMain").change(function () {
    $.post(myUrl , { mileID: $(this).val() }, function (data) {
        refreshDiv($("div#main"), data);
    });
});
link|improve this answer
Thank you! Your first option is something I was looking into but somehow must have done wrong as it wasn't working. It now does! – LanFeusT Mar 9 '11 at 21:40
feedback

Not a direct answer, but this is how I do it on my Zend MVC site, when I add my jQuery - I set a var as the base URL - then in the ajax call, place the var in front of the path.

So for me I would do:

    $this->jQuery()->addOnLoad('var baseURL = "'.$this->baseUrl('').'";');

Then I could use;

    $.post(baseURL+"/Home/Category/"......
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.