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 6183563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:23:16+00:00 2026-05-24T01:23:16+00:00

I’m trying to pass a string parameter in MVC3. The URL that gets generated

  • 0

I’m trying to pass a string parameter in MVC3.

The URL that gets generated is:

http://localhost:50164/Property/Browse/Oregon

This appears to be the Property controller class in the function “Browse” with parameter “Oregon”.

The right function gets called, but the string appears to be empty.

        public ViewResult Browse(string location)
        {
            //counted_properties: 3 counted_properties_here: 0 
            ViewData["counted_properties"] = db.Properties.Count(); // debug    3 total
            ViewData["counted_properties_here"] = db.Properties.Where(p => p.location == "Oregon").Count(); // debug    1 (the right answer!)
//return View(db.Properties.Where(p => p.location == tmp_location).ToList());     // 0 (bad!)

            ViewData["the_location"] = location;
            int size = tmp_location.Length;     // unhandled null exception when tmp_location = location
            ViewData["location_length"] = size;
     //       return View(db.Properties.Where(p => p.location == "Oregon").ToList());     // Right! but hardcoded
            return View(db.Properties.Where(p => p.location == location).ToList());
        }

When I return the lambda using the hard coded string (Oregon), I get the right answer.

When I return the lambda using the parameter (string location) I get zero results.

When I try to display ViewData[“the_location”] which is a direct copy of the parameter it is blank. Maybe I’m not trying to display it correctly. Here is my view:

Location: @Html.Encode(ViewData["the_location"] )

When I call location.Length I get an unhandled null exception, but this works when I call Length on a hard coded parameter like “Oregon”.

It looks like somehow the string is empty, but this doesn’t make sense since I see “Oregon” in the URL when it gets to the property/browse function.

I’m beginning to wonder if I am allowed to pass strings as arguments in MVC as I haven’t seen any examples with string parameters.

This is a continuation of an unsolved problem:

C#/ASP.NET lambda conversion

By the way, I’m not trying to promote Oregon here. I’ve never been there. Maybe it’s a good place, though.

  • 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-24T01:23:17+00:00Added an answer on May 24, 2026 at 1:23 am

    Check your routing. Traditionally URLs like the one you give will map the value (“Oregon”) to the “id” parameter, rather than the location parameter that you’re trying to use. Either rename the parameter or change the route to use “{controller}/{action}/{location}”.

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

Sidebar

Related Questions

No related questions found

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.