Tagged Questions
The routedata tag has no wiki summary.
9
votes
1answer
1k views
How do you access the current RouteData from View in .net MVC?
If I want to directly access the RouteData (the current action or parameter values for example) from the View, rather than having to pass it in from the controller as part of the ViewData, what class ...
2
votes
1answer
188 views
How Do I Get RouteData Values from a Web Service in .Net 4.0
I am trying to extract an id number from a URL using a web service so that it can be used as a parameter for a where clause in a select statement that produces data from a database based on the id ...
2
votes
1answer
1k views
ASP.NET MVC Passing Lists to RouteData QueryString
The recommended approach for passing lists of values as a QueryString is
www.site.com/search?value=1&value=2&value=3&value=4
ASP.NET handles this well:
string value = ...
1
vote
2answers
370 views
get parameters from URL in controller constructor
I need to write some code to find an ID in my database of a Project.
Users are coupled to a project and all the projects have a lot of connections to other objects, such as Sessions.
Now I need to ...
1
vote
1answer
640 views
ASP.NET MVC POST Parameter into RouteData
I'm using jQuery to POST an Id to my route, for example:
http://localhost:1234/Load/Delete
with a POST Parameter Id = 1
I'm only using the default route in Global.asax.cs right now:
routes.MapRoute(
...
1
vote
4answers
851 views
Asp.Net MVC Beta: Previous RouteData overrides current RouteData?
I have something similar to the following method:
public ActionResult Details(int id)
{
var viewData = new DetailsViewData
{
Booth = BoothRepository.Find(id),
...
0
votes
1answer
71 views
ASP.NET MVC3 ModelState and RouteData placement
in MVC3, is route data always in the modelState collection, or is it only in the modelState collection if that key is specifically requested as per the model binder for the applicable controller ...
0
votes
1answer
81 views
RouteValues with a ViewModel
I have a ViewModel that is a very simple filter object like this:
public class FilterViewModel
{
public String FilterTerm { get; set; }
public String FilterProperty { get; set; }
}
what I ...
0
votes
2answers
455 views
Missing RouteData DataTokens
I'm handling errors in ASP.NET MVC by sending an error id from Application.OnError to a controller action, by adding a route data value that gives the error id:
Global.asax.cs/OnError:
var ...