MVC :: Make Area / Home / Index Default Route
Feb 11, 2011
Can I make the default MVC Route to be just an area root? Basically on Global.asax I have the following:
[Code]....
But I ended up in /Home/Index and not in the area. Does this make sense?
View 7 Replies
Similar Messages:
Nov 22, 2010
I have a site (ex. test.com) which I am using MVC. I have created areas for my site, where each area represents a state. What I would like to do is specify some place in the web.config to when I deploy, I set a value and then the default route when I go to test.com would auto route to: test.com/california or test.com/oregon based on that value.
View 2 Replies
May 30, 2010
I use in my application 2 areas: Website and Admin. I will put all controllers and views in these areas, not in root application. So I would like to have default route 'Website/Mycontroller/Myaction', not 'Mycontroller/Myaction'. I have changed Global.asax.cs:
[Code]....
to:
[Code]....
but now my application doesn't work when I open website http://xxxxxx.pl.
View 9 Replies
Apr 21, 2010
I have the area Blog with controllers (Post and Blog) i want that when the user acess my site without one area, it should redirect him to the Blog area inthe blog controller and in the index action if i use:
routes.MapRoute(
"ClearPath",
"",
new {area = "Blog",controller = "Blog", action = "Index" }
);
i got one error cause he search the view in the root folder:
The view 'Index' or its master was not found. The following locations were searched:
~/Views/Blog/Index.aspx
~/Views/Blog/Index.ascx
~/Views/Shared/Index.aspx
~/Views/Shared/Index.ascx
View 10 Replies
Feb 17, 2011
We are working on an aspx site that we would like to not show users until we are ready to launch. The Default.aspx seems to have more "power" over my index.html file. All I would like to do is show the index.html by default and when working on the site, we can navigate to Default.aspx and work from there.
View 2 Replies
Dec 31, 2010
My query is somehow related to passing the id values as parameters in MapRoute on RegisteredRoute method
routes.MapRoute("MachineGroupList:, PhysicalMachine/ListGroupMachine/{used}/Page/{page}", new {controller="PhysicalMachine", action="ListGroupMachine",id="XNA"});
How can i use {used} value in id ?
My Page have:
<%: Html.RouteLink("<<<", "MachineGroupList", new{used=Model.UsedBy,page=(Model.PageIndex-1),id=Model.UsedBy})%>
My controller for this Action is:
public ActionResult ListGroupMachine(string id, int page=0)
{
....
}
Everytime I call this Action the Id should be of groupBy column; over here it is 'Used' First time I have called this Action from <%html.ActionLink("Machine","ListGroupMachine", new {id=Model.UsedBy})%> But in my Html.RouteLink the id object is not identified in MapRoute method...
View 2 Replies
Jun 18, 2010
I want to have the following URL pattern in my MVC application:
www.test.com -> display welcome page
www.test.com/5 -> display article with ID 5
I have set up my Home Controller like this:
[Code]....
When I request www.test.com, everything works as expected (the Index action is invoked with the ID parameter set to NULL).
But when I request www.test.com/5 it says: HTTP 404 Resource not found. When I request www.test.com/?id=5 it works.
View 2 Replies
May 7, 2010
I am using asp.net C#/3.5 and stuck.
PHP Code:
Route myroute1 = new Route("{controller}/{action}/{slug}", new MyRouteHandler());
Route myroute2 = new Route("{controller}/{action}", new MyRouteHandler());
Route myroute3 = new Route("{controller}", new MyRouteHandler());
Routes.Add(myroute1);
Routes.Add(myroute2);
Routes.Add(myroute3);
[code]...
View 12 Replies
Feb 26, 2011
I want to know how I can make website available in my private home network? I know I am supposed to make my IP address static but I still do not know the complete steps to accomplish what I want to do. Is this even possible? If it is can someone please explain to me what I have to do?
View 3 Replies
Jan 27, 2011
I have a Search Controller with an action method as follows:
public ActionResult Location(LocationSearchInputModel input)
{
// Get Results and pass cacheId in TempData
return RedirectToAction("results");
}
public ActionResult Results()
{
// Get cacheId from TempData and build Model
return View(model);
}
The call to RedirectToAction fails with the following error message:
Message: No route in the route table matches the supplied values.
My default Route is set up as follows:
routes.MapRoute(null, "{controller}.mvc/{action}/{id}/", new { controller = "Home", action = "Index", id = UrlParameter.Optional });
As the id Parameter in the default Route is optional shouldn't RedirectToAction("results") execute the SearchController's Results action?
It worked in MVC2 :/
View 5 Replies
Feb 17, 2010
I have an application that I run in several places (demo, production, local, etc.) that all use different virtual directories for the placement of the MVC application.
I use StructureMap in this application, so I am overriding the ControllerFactory to use StructureMap to build controllers (when the passed controller instance is not null).
My problem is that the controller instance being passed to the controller factory IS null, which is fine if said route didn't exist, but it does... specifically, it should be my DEFAULT ROOT route.
Basically if I host the app at [URL], everything works fine except when I have a '/' on the end of the URL (meaning,[URL]... the latter works fine, while the former gives me the error). It looks like when that slash is there, the routing engine is deciding that it should be looking for a controller named MvcController, which doesn't exist, and which then passes the null controller instance to the ControllerFactory, resulting in the following error:
The controller for path '/Mvc/' could not be found or it does not implement IController.
My Default route is the standard default route. Removing all other routes has no effect. My default controller is HomeController.
View 3 Replies
Jul 7, 2010
So far I use [URL] to get the longitude and lattitude of some address.
function load()
{
if (GBrowserIsCompatible())
{
map = new GMap2(document.getElementById('"mapHolderID');
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(lattitude,longitude), 15);
var point=new GLatLng(lattitudelongitude);
map.addOverlay(new GMarker(point);
}
}
So if user enters Downtown it would take the user to downtown. Now what I want is that if user searches for downtown resturants search result should point to downtown as well as list all the resturants in downtown.
View 1 Replies
May 25, 2010
How to make your home page shows a small part of your post with the title and "read more.." button, so once you click on the "read more.." button you will be taken into page with the entire post.
View 3 Replies
Jan 22, 2011
how to make my web - home page and add to favorites in google chrom ? (in asp.net C#)
View 2 Replies
Feb 1, 2011
Global.asax route values
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = UrlParameter.Optional, filterDate = DateTime.Now.AddDays(-1), filterLevel = "INFO" } // Parameter defaults
);
Here's my actionlink
@Html.ActionLink(item.MachineName, "Machine", new { id = item.MachineName, filterLevel = "hello" }, null)
When the filterlevel is specified in the actionlink, it generates a url like this: [URL] Which is the same page as I am currently on. If I change the actionlink to use a property other than one that has a default value in the route table (yes, if I use filterDate it messes up too), it generates a link like this:..............
View 4 Replies
Dec 20, 2010
I'm using the asp.net menu control. It's working great, but I'm trying to figure out how to make the area around the text in the menu clickable? You see, some words in the menu are much longer than others, and I don't like it that the user has to move their mouse to the left to be able to click on the word in the menu just because it is shorter. Is there a way to make the entire menu item clickable? My menus are across the top of the page Left to Right, and then they drop down. And it's in that dropdown menu that the text length varies.
View 3 Replies
Feb 14, 2011
I wrote a custom route constraint, but its filter just doesn't get recognized. Does anyone have an example working use of IRouteConstraint ?
Also, note to developers: I get double display of the form on my android. Something must be wrong with the partial rendering?
View 1 Replies
Sep 30, 2012
I have seen in so many sites on the home page there is a search option and after searching any word of the website it displays and in w3schools it navates to goolge with his reference.
How to write a code for the same and which control we should use.
View 1 Replies
Mar 12, 2010
We have a large mvc2 project and just added an area to it. Now some of the paths in our forms are messed up. We are using Strongly Typed actionlinks and formextensions. Please look at the following demo: [URL] The form on this page is incorrectly submitting to the area. I think it's related to routing or just the way that area's are figured out when it's not specified.
View 5 Replies
May 9, 2010
Please check this website: [URL]My question is that how can I make this effect: that hyper link(HOME) is on that dark blue background. How can I do it?
View 3 Replies
Jun 22, 2010
i have div control.... inside i am having datalist control .but i want to make all datalist items with same size and spacing between items should be the same. whatever width of the div tag .but no. of items should be adjusted in that area i have repeatcolumns =3 but it could be any no. so it should get adjusted. i have list of images to be display in datalist.
View 1 Replies
Nov 2, 2010
I have a route that is working correctly in the form of the standard:
{controller}/{action}/{id}
Example real URL is:
http: //mydomain/Project/Index/PRJ2010001
I would like to remove the "Index" from the URL so that when a user enters:
http: //mydomain/Project/PRJ2010001
...the Index view is still rendered.
Note that my ProjectID's always start with "PRJ"
Questions:
1) How do I register this route in my Global.asax.cs file?
2) How would I generate the correct link (minus the "Index") in my views using Url.Action()?
This is what I tried:
routes.MapRoute(
"View Project",
"Project/{id}",
new { controller = "Project", action = "Index" },
new { id = @"/^PRJ/" } //regex constrains this route to only work if {id} begins with "PRJ"
);
View 2 Replies
Aug 19, 2010
I spent the better part of today hunting down an elusive error. I was getting a message saying that it couldn't find the Index view for the Home controller, and it gave a list of locations it searched, e.g., ~/Views/Home/Index.aspx. This was really confusing as the file definitely existing and was at ~/Views/Home/Index.aspx, the first place in the list of locations it searched for the view!
What I eventually discovered was that there was a file that did not get published when I used Visual Studio's "Publish" feature (this is on the "Build" menu). That file was Views/Home/Home.master, and (as you can probably guess) is the master file used by Views/Home/Index.aspx. Once I copied that file into place manually, it started working. But I am left wondering--why??? Why does this file not get published? It's a part of my project, I can see it in the solution explorer, and it's obviously a critical file that's necessary for the MVC app to run. It has the same permissions as every other file in my project. So why wouldn't it get copied? And how can I fix it so it does get copied?
View 9 Replies
Sep 6, 2010
I have a Asp.Net application eg its name is ABC and I have a server eg whose name is XYZ, where the application is hosted from. The default page for the application is Home.aspx.Now the requirement is I want Home.aspx to open automatically when the server name is typed in the URL. Currently for accessing the Home page I writehttp://XYX/ABC/Home.aspx but I want Home.aspx to open if I writettp://XYZCan anyone suggest how I can achieve this. I have one solution that is making a HTML page as default in IIS and then redirecting it to the respective link.
View 5 Replies
Feb 23, 2010
I used ModalPopup Control on this link, [URL]How should I write the code that to close pop up by click the area outside the pop up panel?I use AjaxControlToolkit-Framework3.5SP1
View 7 Replies