1
vote
0answers
25 views
Parsing a URL Using ASP.NET MVC Routing
I have a URL in string format that I want to parse to get the relevent Route Values. I could parse the string manually, but I want to use my routing configuration so I am not tied …
0
votes
1answer
37 views
Mixing ASP.NET MVC into ASP.NET WebForms
For some reason my routing is ignoring any attempt to access my MVC pages and simply giving me 404s. I have a WebForms app set up like the following:
Virtual Directory: thing
S …
1
vote
3answers
32 views
Images not showing depending on the URL: with or without dash “/” in the end
Hello mates,
This is really weird. The images of my website are not showing properly. If a add a slash in the end of the url, they show up, otherwise, they don't. Take a look:
Th …
0
votes
1answer
29 views
Trouble redirecting string[]
I have a form that posts several like named elements to an action like so:
<%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
<%= Html.TextBox("foo") %>
pos …
1
vote
2answers
45 views
ASP.Net MVC RouteData and arrays
If I have an Action like this:
public ActionResult DoStuff(List<string> stuff)
{
...
ViewData["stuff"] = stuff;
...
return View();
}
I can hit it with the foll …
0
votes
4answers
150 views
Returning a view with it’s model from an ActionFilterAttribute
When implementing error-handling using the built-in validation-helpers on a strongly-typed view, you usually create a try/catch block within the controller and return a view with i …
1
vote
2answers
66 views
Gradually migrating Classic ASP 3.0 to ASP.NET MVC
I'm evaluating a migration from a classic ASP 3.0 application to ASP.NET MVC. I've already migrated applications to WebForms, but have decided to try MVC for this migration for a n …
0
votes
0answers
19 views
Url.Action and routeValues inheritance
Suppose I have the following route (MVCContrib syntax).
MvcRoute.MappUrl("{node}/{action}/{destination}")
.WithDefaults(new { Controller = "Document"})
.WithConstraints(new { …
2
votes
2answers
54 views
ASP.NET MVC route returning 404 without action
I am working on a very simple application, using MVC2 Preview 1.
I have a controller named ContentController. My problem is that /Content/Index works correctly, but /Content/ retu …
1
vote
1answer
27 views
Designing MVC URL scheme for hierarchical system
So imagine I'm building a Multi User Dungeon system using a MVC web application. To describe the areas the player can explore, the system can contain a number of Maps, which will c …
0
votes
1answer
50 views
Render Partial ViewData Parent/Child
I have a collection of Shelves and each shelf has a collection of products. To optimize reuse I have created a partial view ProductList.ascx that is called as I loop through the l …
0
votes
3answers
342 views
How do I use Server.Transfer method in asp.net MVC?
I am trying to use it for Login page.
if (Session["UserID"] == null)
Server.Transfer("/Account/Login", true);
But I get The Exception -> Error executing child request /Acc …
0
votes
1answer
21 views
Compare two RouteValueDictionary instances
I am writing a helper for my application which writes out a menu item for a given strongly typed controller/action as follows:
<%= Html.MenuLink<WhateverController>(c =&g …
1
vote
2answers
51 views
asp.net mvc id not being pulled from route?
I'm not doing any fancy route patterns yet, just the basic controller, action, id style.
However, my actions never seem to be passed the id. When I stick a breakpoint in any one o …
1
vote
3answers
44 views
Setup a route {tenant}/{controller}/{action}/{id} with ASP.NET MVC?
I would like to setup a multi-tenant ASP.NET MVC app. Ideally, this app would have a route with {tenant}/{controller}/{action}/{id}, each tenant representing an logical instance of …
