Web Forms :: ASPX SiteMapNode - Want To Add Another Root (like Home Tab)?
Jul 29, 2010
I have a web.sitemap:
When I run it. It displays Home>Basic Reporting... (All is under Home tab)
[Code]....
I want to add another root (like Home tab) So the user can select another tab withough going through the Home tab,When I add this code (above code ie.2): It doesnt work, compilation error:How do I make it work.
[Code]....
View 1 Replies
Similar Messages:
May 13, 2010
when i hover over my links the url are usually like home.aspx, about.aspx, contact_us.aspx etc
what's the way to make these page name appear like home.com, about.com etc?
View 5 Replies
Sep 17, 2010
How can you request the root default.aspx without specifying it in the url for your root application?e.g. ttp://localhost/MyApp/ instead of http://localhost/MyApp/Default.aspxshould be able to do bothI'm not sure if this is a setting in IIS 7.5 for the application or what.
View 3 Replies
Aug 18, 2010
I've got webform routing setup on my asp.net webforms 3.5sp1 project. I would like to have the files for the site in a directory called content including the home page as I would like to run multiple sites using the same system. In MVC there is a blank default page and the home page is in a folder called home. I can't seem to replicate this behaviour using web form routing but would like to. The blank page is always hit first. the route handler is hit second - it recognises that the request is for the home page and sets up the routing page but is not used. the route handler code is simple:
public string VirtualPath { get; private set; }
public IHttpHandler GetHttpHandler(RequestContext
requestContext)
{
string file = requestContext.RouteData.GetRequiredString("File");
string id = requestContext.RouteData.GetRequiredString("Id");
string queryString = "?menuid=" + id;
VirtualPath = "~/" + file;
HttpContext.Current.RewritePath(
string.Concat(
VirtualPath,
queryString));
var page = BuildManager.CreateInstanceFromVirtualPath
(VirtualPath, typeof(Page)) as IHttpHandler;
return page;
}
Is there anyway I can do this?
Update
Here is my global.asax route code:
public static void RegisterRoutes(RouteCollection routes)
{
Domain.RepositoryFactory repo = new RepositoryFactory();
foreach (var x in repo.MenuRepository.GetAllEnabledGetMenus())
{
if (string.IsNullOrEmpty(x.Url))
{
//add default
System.Web.Routing.RouteTable.Routes.Add(
new Route("Default.aspx",
new RouteValueDictionary(new { File = x.FileName,
Id = x.Id.ToString() }),
new CoreRouteHandler()));
}
else
{
string url = x.Url;
if(x.Url.StartsWith("/"))
{
url = url.Remove(0, 1);
}
System.Web.Routing.RouteTable.Routes.Add(
new System.Web.Routing.Route(url,
new RouteValueDictionary(new {File = x.FileName,
Id = x.Id.ToString()}),
new CoreRouteHandler()));
}
}
}
View 2 Replies
May 27, 2010
i have a website project. i have 2 folders within default.aspx. in the root i have no default.aspx.
How can i redirect users when they are in Role "Folder1" to the ../Folder1/default.aspx
and user in Role "Folder2" to the .../Folder2/default.aspx
View 2 Replies
Aug 2, 2010
I have 3 master pages with names master1.master, master2.master and master3.master and a webpage named as home.aspx how can i change my master pages to inherit with home.aspx using radio button linst.
View 3 Replies
Feb 19, 2010
I'm populating my nodes from SQL 2008. My Defauld.aspx is also devided into frames. leftmenu is frame on left. topframe is frame on top and mainframe is frame right center. In my leftmenu frame LeftMenu.aspx display a SQL populated treeview. if I click on the child node it opens Home.aspx in the Main Frame. This is pretty straight forward. My problem is that i can't get the value of that populated node over to a textbox on my Home.aspx page that is displayed in the mainframe on the right. My code is as follows:
void PopulateSubModule(TreeNode node)
{
SqlCommand sqlQuery = new SqlCommand("Select * From SubModule " + " Where ModuleID = @ModuleID");
sqlQuery.Parameters.Add("@ModuleID", SqlDbType.Int).Value = node.Value; [code]....
View 1 Replies
Sep 29, 2010
I have a main_menu.ascx web control placed in my root and contains my website navigation menu with NavigationURL to the pages
I have my root files and I included the ascx file there Until here, I have no issue Now!
I have sub folders in my root and I want to include same ascx file because I don't want more than one main_menu file!
But the problem here is with the NavigationURL because it will be different when the aspx file is in sub folder
How can make sure my NavigationURL is referring to the correct path whether aspx in root or in sub folder?
View 1 Replies
Mar 2, 2011
I have this linein my code behind, but ShipTo.aspx in not is same folder its in the root that would be ../ShipTo.aspx , I am not sure how I can fit ../ShipTo.aspx instead of ShipTo.aspx in the line.
addressBook.Attributes.Add("onChange","ShowPopUp("
ShipTo.aspx?LineKey={0}&LabelKey=" + this.value + "&sourcePage=Cart.aspx", "400", "500", true);"
View 2 Replies
Nov 27, 2010
I have with working with Visual Studio for a while, and using it's web server. I decided I needed IIS 7 for testing certain features. I installed, but I get an error
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME mapI've googled and been able to figure out that aspx pages are not enabled by default, but I can't find the proper method to fix this.
View 2 Replies
Dec 12, 2010
i added a class to the root of my project and in it i have created an override for the html editor
[Code]....
the thing is that i can't (don't know how to) use it in my .aspx page. i tried adding a "Register Assembly..." but i didn't got it to work.
View 5 Replies
Jan 27, 2010
I ran into the following issue when trying to run a test website on IIS 7.5 (Windows Server 2008 R2 DatacenterEdition). The web-app is configured to run with framework version 3.5 in a .Net 2.0 app pool. Also the framework 4.0 beta 2 is installed on the server. The application named 'TestPfade' is located under the website's root named 'Default'. It is not only a virtual directory but defined as an application. The folder structure looks like this: The markup of the sole document reads as follows:
[Code]....
When viewed in a browser the image gets shown because the given relative path is correctly resolved to 'images/Lighthouse.jpg' but the paths to the ajax-framework resources also include the application's root folder and therefor aren't found: 'src="/TestPfade/WebResource.axd?d=1bX...' Here is the complete html-source generated:
[Code]....
View 9 Replies
Aug 19, 2010
How can I setup the code in default.aspx to automatically direct the user to the default page for the application. If the user types the server name as in http://MyIntranet, I want them to be redirected to [URL]
[Code]....
IIS threw back the error that the operation requires IIS integrated pipline mode, which obviously isn't available because we're running IIS6.
View 3 Replies
Aug 31, 2010
I have a simple ASP.NET 3.5 application running under IIS7 under a virtual directory. So the URL of my app is like http://site.com/app. I want to 301-redirect the request to site.com/app/default.aspx to site.com/app for better SEO. I have to do this redirect through code only, not by any IIS settings. I am unable to do so via code mentioned in this article:
[URL]
The code:
if (request.RawUrl.Equals("/default.aspx"))
{
newUrl = string.Format("{0}://{1}{2}",
request.Url.Scheme,
request.Url.Authority,
request.RawUrl.Remove(request.RawUrl.LastIndexOf("/default.aspx", StringComparison.OrdinalIgnoreCase)));
context.Response.Status = "301 moved permanently";
context.Response.AddHeader("Location", newUrl);
}
seems to go into an infinite loop when the application is under a virtual directory. the request.RawUrl property always returns "/default.aspx" even after a 301 redirect causing the infinite loop.
View 3 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
Feb 11, 2011
I am using iis 5.1 in which we have only only one default website, I have two projects v2 and v3 my website points to v2 projects and have some folders images, styles etc now i have a virtual directory under this website that is hosting project v3 and having the same folder hierarchy as v2 in the home page of the both projects i have img src="imagesedlogo.gif" alt="logo"/> but this shows the same image that is in the v2 directory, How can i show different images for both projects. using "" get the root of the web site but how can i get the root of virtual directory under that website
View 2 Replies
Jan 6, 2011
Is it possible to customize a siteMapNode? Like adding space between the menu selections and/or adding icons?
View 1 Replies
Jul 28, 2010
i created a web.sitemap file where I have listed the following:
[Code]....
I need to set some values before the menu item navigates to the page. I'd like to use the same aspx page for more than one menu item and I'd like to avoid the use of querystrings in my code. However, I realize that it's not possible to set the same url in the web.sitemap file. If I don't specify a url, the menu item created is not click-able.
View 6 Replies
Jan 31, 2010
Does a sitemapnode need to point to a page of the current site? I'm trying to add a node that would take a user to a page on another site, for example:
<siteMapNode title="Help" url="http://www.help.com/help/help.aspx?" image="~/Image/Help.png">
</siteMapNode>
This node does not show-up in my tree view of links, but all the other nodes show. This is the only node that has a url that points to a page outside the current site.
View 1 Replies
Sep 13, 2010
I have Sitemap with Node,
<siteMapNode url="Forms/Test.aspx" title="Test" description="Test" />
I want to assign url to the siteMapNode dynamically depending upon condition eg.
if(id == 1)
<siteMapNode url="Forms/Test1.aspx" title="Test" description="Test" />
if(id == 2)
<siteMapNode url="Forms/Test2.aspx" title="Test" description="Test" />
View 2 Replies
Mar 9, 2011
how can i add siteMapNode in sitmap on runtime
View 1 Replies
Mar 19, 2010
I currently have a working menu driven by a sitemap.I would like to change one of the sitemapnode when a user hits one of my pages. How do i achieve this? I just need to change of the url for one of the nodes in the sitemap.
View 1 Replies
Feb 14, 2011
I need to add a sitemapnode to my screen when the user opens it without adding an actual sitemapnode to the sitemap file. This node needs to include url, title, and description. Does anyone have code to show how to do this in C#?
View 2 Replies
Dec 7, 2010
I have a TreeView, breadcrumb, and Web.sitemap.
I was given some code a while ago which hid certain nodes from the TreeView but allowed them to appear in the breadcrumb.
Here it is:
[Code]....
I later needed do the same thing but, by now, was using C# instead of VB.
I've tried to translate the VB into C# but the code doesn't work. It doesn't report any design time or run time errors; it just doesn't work (the nodes ARE visible in the TreeView.
Here's the C#:
[Code]....
and I've added this:
[Code]....
View 6 Replies
Feb 14, 2011
I am developing an ASP.NET web page with C#. I have a sitemap document but I want to hide certain nodes based on the user's credentials. However, I am having problems with my code removing the actual node. Visual Studio runs the program with no errors. However, the node is still there. Below is the code I have developed for this. The node changes text to "it worked" as I hope written. However, it will not remove itself. I can get the item to be disabled, change enablement, but I need to hide it completely from the viewers view - not the document.
[Code]....
View 4 Replies