2
votes
2answers
35 views

Mvc: Exclude id from url

I have the next foreach in my cshtml page, it allows to me iterate in each Model item @foreach (var item in Model) { <div class="date"> @item.pubDate </div> <a ...
2
votes
1answer
556 views

Umbraco 4.10 + Extending Global.ascx

Does anyone knows how to extend Global.ascx in umbraco 4.10 onwards? I want to register custom routes to my application. I have added code behind to the global.ascx and inherited as follows: public ...
0
votes
1answer
407 views

Global.asax Application_Start Get Action Url / RedirectToAction?

On application start I am checking app versions from the assembly against a value stored in the web.config. If the versions differ, I want to trigger the default installer. So I need to get an Action ...
0
votes
1answer
189 views

MapPageRoute() vs. Site's Root Directory Repeatedly Loads Target Resource

I have the following line in Global.asax.cs: routes.MapPageRoute( "Resorts", "{resortname}", "~/Pages/ViewResort.aspx" ); The intention is to allow a request like: www.mysite.com/some-resort-name ...
0
votes
1answer
203 views

How to send the controller segment of a URL through to an ASP.NET MVC Controller

I'm trying to get the URL segments of a page request in the global.asax file using HttpContext.Current.Request.RawUrl. My code is as follows: public static void RegisterRoutes(RouteCollection routes) ...
3
votes
2answers
1k views

mvc route actionlink url use name instead of id

I think I already asked this but the solution didn't really made sense. Anyway, I have ActionLinks on my views like this: foreach( var item in Model){ <%: Html.ActionLink(item.Name, "Details", new ...
0
votes
1answer
544 views

ASP.NET MVC URL Route Mapping (URL rewriting) Issue

Here is my .Net MVC Folder structure: I have a separate Folder called “Area” and inside that I have a Folder called “Restaurant”. Inside this “Restaurant” Folder I have a controller Called ...
1
vote
2answers
1k views

Using regular expressions in .NET MVC route to handle upper-case characters

I am working on a .NET MVC application and am trying to write a route in global.asax.cs. The goal is, I want any URL that contains an uppercase character to run through said route. The idea is, the ...
1
vote
1answer
456 views

Can I map new routes to the RouteCollection outside Global.asax?

I'd like to occasionally map new routes to the RouteCollection during program execution long after the Global.asax RegisterRoutes() method had first executed. How can I do this?