Tagged Questions
1
vote
2answers
38 views
ASP MVC Routing - How to change the name of the default id parameter, while keeping the default route intact
In my ASP MVC web application, my controllers often have action with a "name" parameter, like this:
Function Consult(name As String) As ActionResult
.....
Return View()
End Function
I ...
2
votes
2answers
19 views
Mvc: Same ActionResult with different name depending url
I would like to know what's the best way to achieve this.
I have an ActionResult in my controller, actually it has news name, now I need to internationlize my website and I can't have the same news ...
0
votes
1answer
43 views
Custom MVC Route - Separate Controller name in Url Segment
I have some controller class such as:
AdminProductController
AdminOrderController
AdminMessageController
and so on. Each controller class encapsulates admin-related tasks about particular subject.
...
0
votes
0answers
18 views
ASP.net MVC MapRoute equivalent in Java SpringMVC
i'm very fashinated from MapRoute function in asp.net mvc, it allows to declare in very simple way url, controller and menu name to map requests inside out web app.
For example
public static void ...
0
votes
1answer
23 views
Routing, hitting wrong action
I have two actions, and whenever I explicitly call the second one, the first one still gets called. I need to be able to write in mysite.com/api/Awesome/GetSomeExamples, without it always triggering ...
2
votes
1answer
38 views
How can i get an ID as parameter from an URL
I want to route the following URL;
/anything/anything-v43243-anything
How can i route this to a specific controller and action with that id as parameter?
The text "anything" has to be a text with ...
1
vote
1answer
39 views
IIS is Redirecting to a 404 Error Page When There is a Hash Value (#) in the URL That Includes a Period
I've come across some behavior that I can't seem to figure out. Some users notified me that tumblr urls were not working for my site.
Tumblr is adding a hash (#) plus some random characters of which ...
0
votes
0answers
49 views
Url rewriting with multiple optional values in asp.net
I have an Asp.net MVC 4 application with a url schema of the form host/catalogue/n/navigation_value/t/type_value/b/brand_value. n, t and b indicate what domain the following value refers to: ...
-1
votes
1answer
74 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
1answer
38 views
What do we have to do in order to push configurations like URL route mappings to ASP.NET MVC Views to an XML file?
All:
We started off our project using ASP.NET Web Forms.
We decided to integrate ASP.NET MVC 4 into our project.
We would like to leave the existing .aspx ASP.NET Web Form pages as it
is already.
...
1
vote
1answer
52 views
ColdFusion/ASP split URL handling
I am working on a new ASP.NET MVC (IIS 7) application that needs to hang off the URL of an existing group of ColdFusion applications. The URL hosts a series of applications and is of the form:
...
0
votes
1answer
64 views
Mvc area routing?
Area folders look like :
Areas
Admin
Controllers
UserController
BranchController
AdminHomeController
Project directories look like :
Controller
...
1
vote
1answer
47 views
How can I split my controller name for url routing?
I want to split my controller name..
For Example;
My controller name is For_ExpController.cs
and
I want my url like this;
http://localhost/For/Exp/Action
How can I define it on my ...
1
vote
1answer
50 views
Using a slug in URL & ID to query DB in MVC
I am trying to use slugs in an MVC web application but can seem to work out the best way to implement them.
I have found the the recommendation on how to create the URL friendly slug stackoverflow ...
0
votes
0answers
203 views
Url.Action parameters
I'm not able to prevent MVC from passing parameters to action url. Parameter code is passed to action index, even if I explicitly set it to empty string. Here is my set up:
A new basic ASP.NET MVC 4 ...
0
votes
1answer
75 views
Difference in RedirectToAction and ActionLink causing .post() not to work
I have application that redirect user to Index page of some controller from account controller using RedrirectToAction(), after login.
RedirectToAction("Index", "MyController");
It redirects me to ...
2
votes
1answer
71 views
How can I get my search query to show up in URL?
Using MVC 4
I have a partial view where I am creating a a search box.
When the submit button is clicked it then passes the value of my search to the control to filter my groups.
Everything filters ...
0
votes
1answer
74 views
Complex urls in mvc views - who's responsible to construct them?
Lets say I need to create a search page. On that page there are:
Complex search filter with many search parameters (param1, param2, ..., paramN)
A list of result items
A pager
A layout switch links ...
0
votes
2answers
208 views
Create Custom 301 Redirect Page
I am attempting to write a 301 redirect scheme using a custom route (class that derives from RouteBase) similar to Handling legacy url's for any level in MVC. I was peeking into the HttpResponse ...
1
vote
1answer
63 views
How can I get Advanced Url Routing parametres?
It works now like localhost/Controller/Action
but I want it like localhost/MainFolder/SubFolder/Controller/Action
because I need to get my MainFolder and SubFolder name; like
RouteData routeData = ...
0
votes
1answer
45 views
MVC need to generate an URL for outside application [closed]
I'm looking to generate an absolute URL/MENU as extension methods which redirects to other application like "www.yahoo.com"/"www.google.com".
thanks
Baaje
0
votes
0answers
65 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
1answer
156 views
How can I set up routing in ASP.Net MVC to have requests for html files bypass the StaticFileHandler and be handled by the routing engine?
Can I (without using runAllManagedModulesForAllRequests = true) route urls with *.html into default controller/action mode?
I need all requests to www.myhost.com/any/any/abcd.html route to ...
2
votes
1answer
291 views
Map routes with combined URL parameter
User can download price information PDFs located in a folder PriceInformations with subfolders specifying the document type, e.g.:
/PriceInformations/Clothes/Shoes.pdf
...
1
vote
1answer
88 views
Route constraint to specific file type
I want to write a catchall route that only applies to certain file types. Right now I have
routes.MapRoute("Template", "{*path}", new {controller = "Template", action = "Default"});
at the bottom ...
1
vote
2answers
94 views
Maintain URL when going from ASP.NET WebForms to ASP.NET MVC
I am converting an old ASP.NET WebForms app to ASP.NET MVC 4. Everything is fine, except that I have a need to maintain backward compatibility with a specific URL. I found this great post on using ...
0
votes
0answers
61 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 ...
0
votes
1answer
34 views
asp.net mvc url routing: how to get particular link URL
Given the following routing:
routes.MapRoute(
"RouteName", // Route name
"ViewFoo/{FooId}",
new { controller = "Foo", action = "View"}
);
...
0
votes
3answers
192 views
Prevent Url Tampering to access another users data
I just wanted to gauge opinions on how I should approach this problem and ultimately looking for a quick win (wrong way to think about things nut time pressures mean I have to think and act quickly!
...
1
vote
1answer
206 views
Route with Two optional parameters in MVC3 not working
I have a following types of url used in my Application.
localhost/admin/userdetail/id
localhost/admin/userdetail/id/true
localhost/admin/userdetail/id/true/success
Here is my Admin ...
1
vote
1answer
173 views
MVC route mapping: 1 URL pattern works only for exactly 1 controller
routes.MapRoute(
name: "GetAdressen",
url: "{controller}",
defaults: new { controller = "AdressenController", action = "GetAdressen"}
);
...
0
votes
0answers
193 views
ASP MVC: how to make url with passing array as parameter by RouteCollection.GetVirtualPath
I have a simple model.
class MyModel
{
public int id{get;set;}
public IEnumerable<int> params{get;set;}
}
my action method is declared as:
public ViewResult Index(int id, ...
1
vote
2answers
250 views
Change URL After Action is Hit MVC?
I want to change:
www.testurl.com/sports/blog/1
Where sports is my area, blog is my action and 1 is an ID of a blog post, to:
www.testurl.com/sports/blog/test-title-of-blog
Where blog is still ...
2
votes
1answer
254 views
Change URL from controller?
Is there a way to change the current url params from the controller so when the page is loaded, additional/different parameters are displayed in the address bar?
Here's what I mean, say I have an ...
0
votes
3answers
294 views
ASP.NET MVC Route URL in Controller Constructor
I have a problem when trying to generate url in the controller constructor
private BreadCrumbItem breadCrumbItem;
public SummaryController()
{
this.breadCrumbItem = new ...
0
votes
1answer
54 views
MVC3/4 Routing and URL catching
I'm working on an MVC app and would like different customers (companies) to see different css styles, logos etc when they visit the login page (and beyond).
I thought about using a url pattern like ...
2
votes
0answers
101 views
T4MVC Optional Parameter Inferred From Current Context
I have read the other post about this at T4MVC OptionalParameter values implied from current context and I am using the latest T4MVC (2.11.1) which is suppose to have the fix in. I even checked ...
3
votes
3answers
547 views
ASP.NET MVC routing with one mandatory parameter and one optional parameter?
I've been working on a large MVC application over the past month or so, but this is the first time I've ever needed to define a custom route handler, and I'm running into some problems. Basically I ...
0
votes
1answer
42 views
asp.net Url Routing Issue
The index function in the controller takes three parameters let's say 'a', 'b', 'c'. Currently i am able to pass values to those parameters in the url like action?a="1"&'b'=2&'c'=3.
I would ...
1
vote
1answer
121 views
should url for ajax get http request be url friendly for seo?
The case:
Controller that get only get "GET HTTP" calls(WEBSERVICE) from website view or from android, iphone etc.. should have url friendly url for seo?
(
user friendly url: ...
0
votes
1answer
49 views
issue while making a 301 redirect to the site home page from custom route in an asp.net mvc application
I have implemented the 301 permanent redirect as read in this article,
Everything is working except in one case the redirect happens to
www.sitename.com/www.sitename.com.
It seems like the place ...
0
votes
1answer
957 views
MVC 4 Web Api routing not working
In my mvc4 project, I have the following routing defined in Global.asax:
routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
...
2
votes
1answer
165 views
MVC Areas and routing issue
I'm having some issues getting Areas working correctly within MVC 3. I have the following folder structure and an Admin area set up:
I'm trying to navigate from the admin page (Index) to the the ...
1
vote
1answer
90 views
How to append '/' to URL if the user removes '/' from url in ASP.NET MVC 4
IF this is my url http://localhost:55070/Server/1-Server
A link in that page will became
http://localhost:55070/Server/2-Instance_12
If I change the URL like this ...
3
votes
1answer
70 views
How can I redirect many urls to a new format?
For example, I have a url structure like this:
/company/articles/{month}/{articleName}
and I now want to redirect all existing links to something like this:
/articles/{articleName}
I thought I ...
1
vote
3answers
276 views
Ajax requests ignore virtual application sub-folder name in URL for ASP.NET MVC application
My application is located on the server under a separate virtual directory. To access my ASP.NET MVC application users have to go to:
http://server-dev/superApp
I have a problem with Ajax/Json ...
0
votes
3answers
560 views
How to get RouteCollection from a request in ASP.NET MVC 4
This is my global.asax (Registering the route)
routes.MapRoute("NewDatabase",
"Server/{serverId}/Instances/{instanceId}/NewDatabase/",
new { controller = "Server", action ...
1
vote
1answer
273 views
ASP.NET URL contains multi “dot” symbol
I wrote the code in global.asax contain this
oRoutes.MapPageRoute("test-route", "home/{cURL}", "~/test.aspx");
everything fine, but had error when URL contains "." symbol. And I add the code below ...
4
votes
2answers
219 views
How to deal with web.config in a url search term
I am creating a search page in ASP.NET MVC3.
The url of calling the action was:
http://mydomain/Search?q=searchterm
it works fine if i search the keyword "web.config":
...
0
votes
1answer
102 views
How to map an axd which not physically exist in ASP.NET MVC3
I am working on a blog site, upgrading it to MVC3.
I have this in web.config:
<add name="RssHandler" verb="*" path="rss.axd" type="Blog.Web.RSSHandler, Blog.Web"/>
So, if I access the ...




