I have the url route working like so [domain]/Listings/Colorado the Action results signature to return the model works fine ...ActionResult GetByStateName(string stateName)..
I'd like to have the same view returned by an ActionResult GetByStateName(string stateName, string priceRange) ...overloading I guess but I can't have ambiguous action results it seems..
What I need is to return the same view but but by different action results...I think.
Is optional parameters the way to go or what might be better as Ill have up to 5 differing parameters, some empty or null be I don't want to have a View for each ActionResult...?