-3
votes
0answers
20 views

SEO Friendly URLs using ASP.NET MVC Routing [closed]

I am working on a website using ASP.NET MVC. I am using ASP.NET Routing to general URLs like : www.site.com/category/subcatogory/?CategoryId=1&SubCategoryId=2 Other option I have is ...
1
vote
1answer
78 views

Routing on GET request with client side

Similar situation to Julian here: MVC - Route with querystring I can't grasp how to action a form, with GET request, with defined routes and values from form. (EDIT: essentially same context in ...
0
votes
1answer
19 views

Asp.Net MVC - Routing issue with same name controllers?

The problem I'm facing is that I have 2 controllers with the same name. One in the main controller folder, and the other in the controller folder in my Admin Area. Calling the action result directly ...
1
vote
1answer
29 views

Uniform way of passing an array in querystring in ASP.NET MVC 4

I have a controller's action: public ActionResult Find(IEnumerable<string> ids) { ... } I'm succesfully invoking it by route ../Find?ids=01&ids=02&ids=03. DefaultModelBinder easily ...
1
vote
2answers
37 views

Why do I get a 404 for any new Action method in my controller?

In an ASP.NET MVC 4 project, I've added an MVC Controller with scaffolding from an EF class. I.e, CRUD operations. They all work. If I add action methods by hand, add an Html.ActionLink() to a view ...
0
votes
0answers
45 views

Why Page.GetRouteUrl returns null?

I'm trying implement Url rewriting on my site using Routing, but somehow it's not working. My code is very simple: in Global.asax: void Application_Start(object sender, EventArgs e) { ...
1
vote
1answer
46 views

can not map a route for a specific controller in mvc 4

I have a controller named Registration and an action method in it as the following: public JsonResult GetReqs(GridSettings gridSettings, int rt) { ...//whatever return ...
0
votes
1answer
48 views

ASP.NETMVC routing looping forever

I'm quite new to MVC routing so please bear with me if this is too trivial. I have created the following route: routes.MapRoute("ProductSearch", ...
0
votes
0answers
93 views

How can I get ASP.NET MVC 4 to accept routes that look like filenames?

I'm working on a custom routing extension for ASP.NET MVC4 that uses reflection to generate routes based on attributes applied to controllers. It's a fork of Brandon Byars' RestMvc project and I'm ...
0
votes
2answers
59 views

How can I have a routing like this controller/action/id/string in ASP.NET MVC

I have a actionresult that look this: public ActionResult Comment(int id) { var news = re.GetNewsByID(id); NewsViewModel model = new NewsViewModel(); model.Description = ...
1
vote
2answers
57 views

Alter generated URLs in MVC globally

I have a very simple question. I just want to be able to change every URL that gets create by a helper class in MVC.NET, the problem is that I don't know what I have to override to do so. Edit: My ...
1
vote
0answers
61 views

How to set default ApiController in HttpConfiguration.Routes?

the api routing configuration from the template is this: public static void Register(HttpConfiguration config) { config.Routes.MapHttpRoute( name: "DefaultApi", ...
0
votes
1answer
81 views

ASP.NET MVC Routing issue. Not mapping route

I'm new to ASP.NET MVC and I've encountered problem, which I can't solve. I've spent two days searching Google, but still nothing. So, my situation is: I'm trying to implement localization in my ...
1
vote
1answer
80 views

ASP.NET MVC Routing. Resource not found

I'm trying to implement localization in my ASP.NET MVC application using routing. For example: www.example.com/Home/Index - will show content for default culture. www.example.com/en/Home/Index - ...
-1
votes
1answer
103 views

Asp.net MVC Routing always to Root with parameters

Now, the question. I have an eCommerce website and I have a controller called Store with an action Index. When someone types www.mysite.com/sony, I want to route to controller Store and action Index ...
0
votes
3answers
247 views

ASP.net MVC site : Redirect all “non WWW” request to WWW

Recently I migrated an ASP.net site to ASP.net MVC site. Earlier there were two host headers one mydomain.com and another is www.mydomain.com. My SEO says you should use only one url "www.domain.com" ...
3
votes
1answer
454 views

AngularJS optional URL parameters with HTML5 mode and ASP.Net MVC

Similar to the last question that I asked, but a little more complicated. I've got an ASP.Net MVC served Angular app. .when("/Catalog", { templateUrl: "/htm/catalog/catalog.htm" }) ...
0
votes
2answers
77 views

MVC Routing access path

I am quite new to MVC. I am facing a problem with routing right now. My project URL is /account/Create. I can access controller and do my stuff for Create, but I need to access /account controller ...
1
vote
2answers
90 views

MVC Action Method with nullable parameter

I am calling a action with the parameter value. But it is not assigning parameter value to action method parameter. public ActionResult UserDetail(long? userId) { } ...
1
vote
1answer
78 views

Mvc area routing?

My project structure: Controller AdminController HomeController After Area addition my project structureI added an Admin area to project, Areas Admin Controller ...
0
votes
0answers
61 views

ASP.net MVC conditional default route

Is it possible to create a conditional default route? I would like the change the default route based on the logged on the current user's permission. I'm currently creating the default route like so ...
0
votes
1answer
71 views

How do I redirect all file access request in a subfolder?

currently I have this routes.MapRoute( name: "TestRedirect", url: "Test/{*pathInfo}", defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } ); I'm hoping ...
0
votes
0answers
50 views

Routing Http Requests

This is a follow-up to a question I asked earlier today. So I ended up routing to the other applications by creating HTTP requests using the mapped URL. I got the basic scenario working in which I ...
2
votes
1answer
181 views

Redirecting calls to different web applications

I have the following scenario to implement: User requests /HR/Employee/Get on the main website (localhost:80) HR is the name of an application hosted in IIS on a different port (say localhost:8081), ...
0
votes
1answer
148 views

Routing multiple gets for WebApi in MVC4

I'm creating a rest API in ASP.NET MVC4, and am having a problem with routing. For reference, I've already read these questions but they haven't answered my problem: Web API Routing - ...
0
votes
2answers
134 views

Convert asp.net C# to vb

I am trying to convert this code, but getting some error this is the main link of the code. I am getting these 2 errors: Type "domainroute is not defined and 'optional' is not a member of ...
0
votes
0answers
69 views

routing with just one of two parameters of controller

I have an actionresult with two parameter: public ActionResult Index(int a,string b) { //some code return View(b); } it creates this url automatically: ...
1
vote
2answers
114 views

Handling Brochure-style pages in ASP.Net MVC

I've built a number of ASP.Net MVC sites and in each of them there are a number of pages suited to MVC's Controllers and Actions, and a number of pages that are really just brochure pages - /why, ...
0
votes
0answers
194 views

call a class function in Global.asax?

I found this code from stackoverflow and want to implement in my asp.net webform. I added a class in my project named democlass.vb and paste this code in it. now i want to call it in Global.asax ...
1
vote
1answer
94 views

Legacy PHP urls do not invoke custom routing in MVC

We recently replaced an old php website with an asp.net MVC website. In order to prevent 404 errors from the legacy urls in search engines, we setup a custom legacy route system via - ...
1
vote
2answers
146 views

Handling extra MVC parameter with different ActionResult

I'm working on a website that has 4 individual sections, each with their own controller. These controllers share a few models, however the model will do things slightly differently based on the ...
5
votes
1answer
80 views

Possible to make “controller-less” urls with ASP.NET MVC?

I'm using ASP.NET MVC 4, .NET 4.5. Any way, besides creating individual controllers for each "action", to have "controller-less" urls? What I mean is, have a Home controller filled with actions. Urls ...
0
votes
0answers
299 views

MVC way to rewrite search engine friendly urls

My ASP.NET MVC 4 site (razor syntax) currently have rewrite mechanism for UFU, SEO urls. I'm using custom HttpModule which tried map request url to inner url and if inner url exist just does ...
1
vote
1answer
141 views

generate url in specific language with attribute routing

Working with attribute routing for mvc4 and very happy with it. I have a question though, my site supports 2 languages and I have localized all my url's. The supported languages are french and ...
0
votes
1answer
482 views

How can we make an ASP.NET MVC4 route based on a subdomain?

Ho can we make an ASP.NET MVC4 route that uses subdomain information to determine its route? For example: •website1.domain.com goes to domain.com\websites\1 •website2.domain.com goes to ...
2
votes
1answer
716 views

Setting up ASP.Net MVC 4 Routing with custom segment variables

I just began working on an application with a couple areas (basic grid master / details type system..) I'm looking into taking advantage of the nice routing features in MVC (4 specifically) and I'm ...
3
votes
1answer
364 views

ASP.NET MVC Routing: How to make my MVC URL's have .aspx extension?

I want an MVC app to have .aspx page URLs even though there will not be any physical aspx pages and I will be using the Razor view engine. 1) Is it possible to define such a route? 2) What would ...
1
vote
1answer
61 views

ASP.net MVC Routing with Arbitrary # of Leading Segments?

So, this is both a technical and a SEO question. Let's say you are developing an e-commerce site and the client requests that you maintain the category path in the structure of the URL. Example: ...
2
votes
1answer
709 views

Dynamic RouteConfig in asp.net MVC 4

I know I can change the routing in the RouteConfig in my MVC application: routes.MapRoute(name: "epage", url: "view/SpecificURL", defaults: new { controller = "ePage", action = "Index" }) ...
3
votes
2answers
189 views

The previous page link appears in address bar in MVC3 Razor application?

I am using MVC3/Razor. After I login into the website, it appears the home page, but I don't understand why the previous page url appears. Scenario: When I redirect user from LogOn page to Home page ...
0
votes
2answers
146 views

ASP.NET MVC: Routing issue

So I have this controller action: public ActionResult Categories(int typecode) { // code removed } this route: routes.MapRoute(null, "{controller}/{action}/{typecode}", new { controller = ...
0
votes
0answers
70 views

How can I get MVC to stop sucking regarding slashes in route values?

I have a route like this: routes.MapRoute( "View Blob", "browse/{repo}/blob/{object}/{*path}", new { controller = "Browse", action = "ViewBlob", path = UrlParameter.Optional }); When I ...
6
votes
1answer
370 views

ASP.NET MVC 4 routing not working when the id has a file extension

In MVC 3 I didn't have an issue, but now I have gone to MVC 4 I do. The URL looked like this: {controller}/{action}/{id} /podcast/file/PODCAST-01.MP4 Where the PODCAST-01.MP4 is the id; when it ...
1
vote
2answers
73 views

managing many method routes in an api service with webapi

This is a simple issue with managing many methods across an asp.net web api project. We have quite a few methods like this: ProductsApiController.GetByType(string type, string x) ...
-1
votes
1answer
91 views

Do I need to create a DNS A record? [closed]

I am creating a Windows Azure web ASP MVC site. I have a dialog box saying To verify authorization, create a CNAME resource record with your DNS provider that points from either www.xxx.com to ...
3
votes
2answers
139 views

Route value with dashes

I have this route: routes.MapRoute( "News", "News/{id}-{alias}", new { controller = "News", action = "Show" }, new { ...
0
votes
1answer
116 views

Routing issue in asp.net mvc 3. Displays items by category, but doesn't display all items

I want to display items by categories. I use linq and everything works except of that I can't display all items regardless category. Probably routing issue, cause I've already asked question about ...
0
votes
2answers
104 views

ASP.NET MVC unique url routing

So, I've read through tutorials and books about MVC routing as well as played with it on my projects and come to a pretty solid understanding of how to use it to accomplish what I want to with it. ...
1
vote
1answer
191 views

parameters in url in asp.net mvc

I know this can be done, but don't even know what its called to find a good tutorial from Google. I am using ASP.Net MVC4 and I have a controller called ePage, right now I can access what I want from ...
3
votes
2answers
283 views

Routing issue: ASP.NET 4 or 4.5

I have encountered a problem with routing. I need to create this kind of route: http://www.site.com/index.html?parameter public class RouteConfig { public static void ...

1 2 3 4 5 15