Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6252867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T13:53:02+00:00 2026-05-24T13:53:02+00:00

I have a very simple asp.net mvc3 app that uses jquery::getJSON to call into

  • 0

I have a very simple asp.net mvc3 app that uses jquery::getJSON to call into my controller and get some data top display via jquery::tmpl.

function ajaxError(jqXHR, textStatus, errorThrown) {
    alert(errorThrown);
}
....

    $.ajaxSetup({
        cache: false,
        error: ajaxError // tell me what the error was
    });

    var cl = $("#listcontainer");
    $(cl).empty();
    $.getJSON("/Home/GetSomeData", { oldData: "" }, function (data) {
        $.each(data, function (i, item) {
            var t = $("#listitem").tmpl(item);
            $(cl).append(t);
        });
    });

Everything works ok under IIS express, however When I deploy the app to a freshly setup iis7 on win2k8 r2, the getJSON call fails with the error “Not Found” being displayed via the ajaxError function. (the actual app runs ok otherwise).

I can actually call the action from the browser by typing it in – http://webservername/myapp/Home/GetSomeData – and it returns the json to me.

Is this a configuration error? Or am I not supposed to be doing it like this?

TIA.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T13:53:03+00:00Added an answer on May 24, 2026 at 1:53 pm

    The issue here is that your URLs are hardcoded and don’t contain the virtual directory you’re working from.

    Rather than hardcode your URLs you should look at using the routing built into MVC.

    You can use the Action method of the UrlHelper to generate links for you such as:

    Url.Action("GetSomeData","Home")
    

    So that:

    $.getJSON(@Url.Action("GetSomeData","Home"),[...]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a very simple app on my local machine that uses the ASP.NET
I have a very simple asp.net mvc web app which uses castle active record,
I'm playing around with using ASP.NET MVC3 and have a very simple site that
I have a very simple ASP.Net page that acts as a front end for
I have a very simple ASP.Net MVC Application that I have produced from an
I am building a very simple asp.net application that will have a SQL Server
I have a simple ASP.NET MVC web application that uses NHibernate with FluentNHibernate's auto
We have a very simple ASP.NET web application comprising mostly static content and a
We have a very simple ASP.Net page for uploading a file to our webserver.
I'm building a very simple ASP.NET MVC site that doesn't require a database and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.