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

  • SEARCH
  • Home
  • 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 7705597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:54:10+00:00 2026-05-31T23:54:10+00:00

I have MVC3 project & Valums file uploader . The code is following <script

  • 0

I have MVC3 project & Valums file uploader.

The code is following

<script type="text/jscript">
   var uploader = new qq.FileUploader({
   element: document.getElementById('file-uploader'),
   action: '@Url.Action("UploadFile")',
   allowedExtensions: ['jpg', 'jpeg', 'png', 'gif'],
   sizeLimit: 2147483647,
   onComplete: function (id, fileName, responseJSON) {
           var uploadedFile = "/Images/Orders/thumb-" + responseJSON.uploadedFile;
           $("#uploadedImage").attr("src", uploadedFile);
           $("#ImageErrorMessage").text("");
           alert("Your file has been uploaded.");
      }
  });                                 
</script>

So locally when the uploading is done I can see the thumbnail image so jQuery
works great.

But on LIVE website it doesn’t show the thumbnail image at all. (But I see the alert message anyway and thumbnail image is created I checked it.)

The size of the thumbnail is around 30 Kb.

So it should be but it doesn’t.

Any clue? Thank you!

  • 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-31T23:54:11+00:00Added an answer on May 31, 2026 at 11:54 pm

    You have a hardcoded url:

    var uploadedFile = "/Images/Orders/thumb-" + responseJSON.uploadedFile;
    

    That’s something you should never do in an ASP.NET MVC application. You should always use url helpers when dealing with urls. The reason for that is because when you deploy your application in IIS, there’s a virtual directory name that you must put in front of your urls. So the correct address is now:

    var uploadedFile = "/MyAppName/Images/Orders/thumb-" + responseJSON.uploadedFile;
    

    Obviously having the two separate versions one for development and one for production is unacceptable. That’s why you should use url helpers.

    So:

    var uploadedFile = '@Url.Content("~/images/orders/thumb-")' + responseJSON.uploadedFile;
    

    or if this is in a separate javascript file in which you cannot use server side helpers, you could declare the base url as a global javascript variable in your view and then reuse it here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

As I have been following a MusicStore tutorial, new MVC3 project created a following
i have a problem with the asp.net MVC3. when i create a new project
I have the following in my project (MVC3) N2CMS 2.2.1 (from nuget). I am
I have an MVC3 project I created using the Code First paradigm and it
I have a new MVC3 project with one Controller called PublicController.cs which contains 4
I have a new MVC3 project setup, and I added a folder inside my
I have an MVC3 Project running with EF Code First. Here is my code
I have a MVC3 project for running on the iPad in the web-app mode.
In an ASP.NET MVC3 project I have a structure like this: Core.csproj -> 3rdparty1.dll
Working on an MVC3 project. I have an area named Area with an areaRegistration

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.