Web Forms :: Display Menu Like "testAnother SubOther SiteMapNode"
Mar 1, 2011[Code]....
I want to have such a menu: How to display like this:> testAnother subOther siteMapNode, works.
[Code]....
I want to have such a menu: How to display like this:> testAnother subOther siteMapNode, works.
How can i have a menu control that Manage SiteMapNode from the menu to hide and Just when admin logged to see it.
[Code]....
I need to have a siteMapeNode for a menu control to only show up during development.
The following node would be in the web.sitemap file.
[Code]....
I can either put this node in my web.sitemap file and remove it in release builds.
Or Add the node in debug builds.
Probably done in PreInit or Page_load events.
I know that the code depicted below will not work but I am including it to convey the idea of what I wish to accomplish. I want to use a different SiteMap to construct the menu on the displayed page for each of three different classes of service (COS).
I set a session variable named "COS" at the login and want to test its value prior to rendering each page. I want to display a menu based upon the appropriate COS. Here is my first stab at it but I know that I cannot include <asp:...> controls within the "case" statements. Can anyone suggest methods of doing this? I know C# and can use that but I do not know how to select the proper sitemap within the <menu> control. I am also using a CSS in my production version.
[Code]....
I have placed an aspx menu control on my master page with orientation as Horizontal. Below is HTML markup.
HTML Code:
<asp:Menu ID="mnuMedChem" runat="server" Orientation="Horizontal" Width="100%" OnMenuItemClick="mnuMedChem_MenuItemClick">
<DynamicHoverStyle CssClass="DynamicHover" />
<DynamicMenuItemStyle CssClass="DynamicMenuItem" />
[Code]....
I have tried populating the menus from my database by using the
Code:
mnuMedChem.Items.Add
and
Code:
mnuMedChem.FindControl(value).ChildItems.Add
The menu items and the childs are populating correctly but then the menu is not being displayed on the menu control.
I want to display a menu on LHS which display Category and an arrow. When one clicks on arrow Products corresponding to that Category are displayed. How can one do that?
Menu: Category1(Arrow Image)
Product1
Product2
Category2(Arrow Image)
Category3(Arrow Image)
Is it possible to customize a siteMapNode? Like adding space between the menu selections and/or adding icons?
View 1 Repliesi 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.
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.
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" />
how can i add siteMapNode in sitmap on runtime
View 1 RepliesI 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 RepliesI 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 RepliesI 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]....
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]....
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]....
how can i fix my menu that is not showing a dynamic items... it only says "Expand ****"... suddenly that problem showed up... and also a skip navigation link showed too..
View 5 Repliesmy sitemap path currently displays the root node of my website and only a child node. it is binded to the following web.sitemap:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/home.aspx" title="Home" description="">
<siteMapNode url="~/biography.aspx" title="Biography" description="">
</siteMapNode>
<siteMapNode url="~/links.aspx" title="Links" description="">
</siteMapNode>
<siteMapNode url="~/movies.aspx" title="Movies" description="" >
</siteMapNode>
<siteMapNode url="~/contact.aspx" title="Contact" description="">
</siteMapNode>
</siteMapNode>
</siteMap>
however i want the breadcrumb to display links exactly like my menu. for ex: home|links|bio|register not the child and its parent node!
I am porting an ASP.NET 2.0 project to VS 2010 and ASP.NET 4.0. I have the asp.menu set up to go horizontally across the top of my master page. This works pretty good, but I have a couple of pages that take a long time to load a lot of data (that is another issue though). The problem that I am having is that when these slow pages load the menu is initially vertical and then switches to horizontal. This looks so bad that I had initially thought that it was displaying my sitemap page. I just want it to draw properly (horizontal) to begin with.
Also, the content page has a script manager with CDNenable set to true.
The menu is defined as:
<asp:Menu id="Menu3" runat="server" datasourceid="SiteMapDataSource1"
How can we display the menu alone in the menu control and submenu with the breadcrumb like style.
View 1 RepliesI have a site map on my project and I have section which get values from sql database and it changes according to querystring Id value. In my sitemap the title of the page is everytime same. but I want tpo change it at runtime. I am using multiple sitemaps and My sitemap is not the default one. its name is rootSitemap. I tried some code which I got from msdn but it seems doesn't work for me;
[Code]....
Here is my sitemappath code which is situated in my master page;
<asp:SiteMapPath SiteMapProvider="rootSitemap" ID="SiteMapPath1" runat="server"></asp:SiteMapPath>
I am using Session state in my ASP.NET application. The development is done using InProc session state as the option, but now the application is deployed on a Web Farm(Cluster) environment. As a result, InProc session state is not working.
I have changed the session state mode to SQL server so the session state will work in Web Farm environment. But now i am getting a different error because of some of the objects which i have already used with Session.
Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.
I understand that every object that is stored in Session needs to be serialized. But there are some objects which are not serializble in DOTNET.
Unfortunately i am using one of them, SiteMapNode. I am storing this object in session to re-create the breadcrumb based on the navigation the user has performed. I have to do this because there are mulitiple paths leading to single page in my application.
I have tried to do serialization of this object using XML serializer object, but its throwing an exception:
"System.Web.SiteMapNode cannot be serialized because it does not have a parameterless constructor."
I can't change the code of storing the SiteMapNode in session as it is very complex and written by someone else. I have to store this object in session or some other state form so that i can continue using the same code.
I have an application where I am binding sitemap to a repeater control for showing horizontal tabs and this shows up fine. Now I have to append some dynamic query string parameters (say id and year) to all the sitemap nodes of the sitemap so that when I bind it to a repeater all the tabs will have these query string parameters.here is my sample code
[Code]....
this is my extendedsitemap within app_code class
[Code]....
And when the sitemap is bound to my repeater control the tabs have url like
[Code]....
Now when I try to click on next or previous buttons on any page to navigate, I am not able to access the nextsibling or previoussibling node.....both of them are null. can any one let me know what am I doing wrong here?
I am using multiple sitemaps in my project. they are all registred inside the web.config file.
I have a blog inside my project and I need something below;
Home > Blog > cahngeable_category_name_acordingto_my_value > changable_blog_post_name_according_to_my_value
I have tried the below code but it didn't work. it gives me an error.
[Code]....
I am using VS 2010 and ASP.NET 4.0. I have the ASP:Menu in the top of my master page and it's orientation property is set to horizontally. I have a problem with some pages that take a long time to load data. The problem I am having is that when these slow pages load, the menu is initially vertical and then switches to horizontal after few seconds which doen't look good. I have tried to change Orientation in MenuItemDataBound but no difference.
View 3 Replies