CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: NewsGroup Date Entered: 3/13/2008 10:55:05 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 8 Views: 25 Favorited: 0 Favorite
9 Items, 1 Pages 1 |< << Go >> >|
AlbertRossouw
Asp.Net User
Web.sitemap3/13/2008 10:55:05 PM

0

Can someone point me to a video tutorial on configuring the web.site map or tell me how to display the "tre view" and "menu" navigation tools so that I can have a horizontal display (no child relations)

 Thanks

Albert

Mansoor Ali Sad
Asp.Net User
Re: Web.sitemap3/14/2008 12:23:50 AM

0

Check out this link http://quickstarts.asp.net/QuickStartv20/aspnet/doc/ctrlref/navigation/sitemappath.aspx
Thanks.

Please mark the post as answer if it helps you!!!





anhnd
Asp.Net User
Re: Web.sitemap3/14/2008 4:55:08 AM

0

<asp:TreeView ID="TreeView1" runat="server" DataSourceID="SiteMapDataSource1" ImageSet="Arrows">
                        <ParentNodeStyle Font-Bold="False" />
                        <HoverNodeStyle Font-Underline="False" ForeColor="#5555DD" BackColor="Yellow" />
                        <SelectedNodeStyle Font-Underline="False" ForeColor="#5555DD" Font-Bold="True" />
                        <NodeStyle Font-Names="Tahoma" Font-Size="10pt" ForeColor="Black" HorizontalPadding="5px"
                            NodeSpacing="0px" VerticalPadding="0px" />
                    </asp:TreeView>

AlbertRossouw
Asp.Net User
Re: Web.sitemap3/14/2008 12:41:15 PM

0

Thanks but this is not my problem.

In the solution explorer I open the web.stemap

It's here that I am unable to set the parent child relations.

What I want to do is just to have are no child relations. I would like to have a horizontal menu navigation pane with no formating.

Dave Sussman
Asp.Net User
Re: Web.sitemap3/14/2008 3:39:40 PM

0

The site map depends on a hierarchy, with one single root not and multiple child nodes. However, you can instruct ASP.NET not to show that root node, so it only shows children. The SiteMapDataSource control has a ShowStartingNode property, which you can set to false to make it not show the root node.

Or, for a menu use:

<asp:Menu Orientation="Horizontal" StaticDisplayLevels="2"

This won't ignore the root node, but will treat it as though it were at the same level as it's children.

 

AlbertRossouw
Asp.Net User
Re: Web.sitemap3/14/2008 8:49:33 PM

0

Thanks worked like a charm.

Do you know of any video tutorials on setting up website content ie columns, images etc? I have created a master but I am not sure how to add colums etc into a content placeholder?

Dave Sussman
Asp.Net User
Re: Web.sitemap3/15/2008 12:09:14 AM

0

There are two ways to do your layout. The first is the easy way - use tables; it's simple, quick to get going and works. Semanticly it's not the best, but will allow you to focus on application functionality, rather than layout. The second, and better, way is to use CSS; it's simple once you know what you're doing, but is harder to learn and can have cross-browser issues. It is worth learning though and will stand you in good stead for the future; the techniques can be reused. Read http://www.alistapart.com/articles/12lessonsCSSandstandards, it's a good article.

I have a fairly standard design I tend to use; you can get it from http://www.ipona.com/samples/2007/AGN202%20-%20CSS%20101.zip - a slide deck and sample web site for a CSS talk I do. There are other places to get layouts though; try http://www.opensourcetemplates.org/; I've no idea on how easy they are to integrate into sites.

It might be worth getting a book or two; I particularly like Andy Clarke's Transcending CSS.

d

AlbertRossouw
Asp.Net User
Re: Web.sitemap3/15/2008 12:53:54 AM

0

Hi Dave,

Thanks for this.

Just another quick question, how do I create a aspx.vb page for a particular content page?

Thanks

Albert

Dave Sussman
Asp.Net User
Re: Web.sitemap3/15/2008 10:47:00 AM

0

VS will create the code behind file automatically for you if you tick the "place code in separate file" option on the Add New Item dialog. You can manually create code behind files, but if ever I need to I just rename the old file, create a new one with code-behind and copy the content from the old one; I find it quicker and less error prone.

d

9 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
Professional ASP.NET 2.0 Authors: Bill Evjen, Scott Hanselman, Farhan Muhammad, Srinivasa Sivakumar, Devin Rader, Pages: 1253, Published: 2005
Visio 2007 Bible Authors: Bonnie Biafore, Pages: 796, Published: 2007
Sams teach yourself Dreamweaver UltraDev 4 in 21 days Authors: John Ray, Pages: 767, Published: 2000
Beginning ASP.NET 3.5: In C# and VB Authors: Imar Spaanjaars, Pages: 734, Published: 2008
Beginning ASP.NET 3.5 in C# 2008: from novice to professional Authors: Matthew MacDonald, Pages: 954, Published: 2007

Web:
Web Site Navigation Using a SiteMap Web Site Navigation Using a SiteMap. ... The default provider XMLSiteMapProvider works through the Web.sitemap. Besides being useful for site navigation, ...
SiteMap Class (System.Web) The SiteMap class is an in-memory representation of the navigation structure for a site, which is provided by one or more site map providers.
CodeProject: Stop editing 'web.sitemap'--Let unknown pages ... Reduce sitemap maintenence and never have another "unlisted" page! Unlisted pages dynamically inherit site map placement from a parent page.
ASP.NET.4GuysFromRolla.com: Examining ASP.NET 2.0's Site ... Nov 16, 2005 ... To use this technique, you'll need to create an XML file in your web application's root directory named Web.sitemap that has the following ...
Binding to custom web.sitemap attributes - -[Danny Chen]- Blog of ... First, lets start with a simple web.sitemap and add a custom attributes that we' ll want to map to target. Web.sitemap allows for custom attributes to be ...

GridView page flip: The file web.sitemap required by ... GridView page flip: The file web.sitemap required by XmlSiteMapProvider does not exist., > ROOT > NEWSGROUP > Asp.Net Forum ...
how to write web.sitemap xml file? - ng.asp-net-forum ... how to write web.sitemap xml file?, > ROOT > NEWSGROUP > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls, ...
how to change web.sitemap when web app is running? - ng.asp-net ... I made a menu of website by menu control and web.sitemap in Asp 2.0 ... do I have to make web.sitemap to each localarea? ...
One Web.sitemap for multiple SiteMapDataSource / Menus - ng.asp ... One Web.sitemap for multiple SiteMapDataSource / Menus, > ROOT > NEWSGROUP > Asp .Net Forum ...
Hide Child Node in Web.Sitemap not using roles, possible? - ng.asp ... If i remove the node from the web.sitemap it will cause the menu not to display on ... so,the web.sitemap file can not be changed at all. ...

Videos:
How to Create a submenu from within the web.sitemap Create sitemap file and from within the sitemap you can add more navigation menu and submenus
Free SEO,Search Engine Optimization,AdSense,Blog,Web Traffic ... www.AdsenseTemplates.com You will learn about: SEO,Search Engine Optimization,AdSense,Blog,Web Traffic,How Alexa Ranking,Google Page Rank,Sitemap ...
How to Add a Google XML Sitemap to Your Web Page Step by step instructions on how to add a google xml sitemap to your web page.
Your sitemap and your competitors sitemap. Business Web Basics Ann from http://www.BusinessWebBasics.com discusses website structure and how to check your competitions sitemap. Dont get lost in XML code, just ...
What is a sitemap and why is it important? (web development ... So what is a sitemap? Why is it so important for my site? What does it have to do with SEO? Here's the answers...






menu

css not accessable from content page when master page and content pages are in different folder.

dynamically inserting nodes into sitemap

added wizardstep not in sidebar

text in asp menu will not align left.

navigation using personalization

one master page but i have two content place holder?

adding image to menuitem, how??

internet explorer cannot open this page

masterpage and table ?

accessing masterpage in usercontrol

adding dropdowns programatically to content page in master page and retrieving selected value in code behind

help : user master page with asp:formparameter , save only blank data to database msaccess

style sheet & masterpage reference errors

images in css do not show on on the menu control in masterpage

how to have just two levels of sitemap nav?

printing problem in content pages

authentication info on master page

problem in display page in internet explorer using vs 2005 asp.net development server

infragistics webtree

how to enable item wrapping on asp:menu?

how could i enhance a control to have more action?

masterpage and content page relationship

centerd component not work in firefox

content controls have to be top-level controls in a content page or a nested master page that references a master page.

master pages and aspx pages

how to add javascript file in masterpage

sitemap - display same node for all pages in a directory

spooky -- menu pops to left in firefox!

disabling master pages on page level

   
  Privacy | Contact Us
All Times Are GMT