Dynamic sitemap contents

M

Max2006

Hi,



I am using ASP.NET 2.0 siteMap provider.



I need to make the title of one of my siteMapNode elements dynamic. That
means the title should be "Profile" for logged in users and "Register" for
anonymous users. How can I do that?



Thank you,

Max
 
S

Steven Cheng[MSFT]

Hi Max,

From your description, you're using ASP.NET 2.0 sitemap provider and
display the sitemap info on the page, currently you're wondering how to
customize the data values for a certain sitemapNode at runtime depend on
the user's login status, correct?

As for this question, I think what we shall do depend on how you use the
sitemapProvider(siteMapDatasource?).

If you're use the SiteMappath and want to customize the display of the
current Node, you can use the SiteMap's SiteMapResolve event:

#How to: Programmatically Modify Site-Map Nodes in Memory
http://msdn2.microsoft.com/en-us/library/ms178425(VS.80).aspx

If you're using other Navigation control(such as TreeView and Menu) and
want to customize one or more nodes in them, you may consider use the
TreeView.TreeNodeDataBound or Menu.MenuItemDataBound event to customize the
certain Node:

==============
protected void Menu1_MenuItemDataBound(object sender, MenuEventArgs e)
{
Response.Write("<br/>Menu1_MenuItemDataBound+" +e.Item.Text);
e.Item.Text = e.Item.Text + "_xxxxxxx";
}

protected void TreeView1_TreeNodeDataBound(object sender, TreeNodeEventArgs
e)
{
Response.Write("<br/>TreeView1_TreeNodeDataBound+" + e.Node.Text);
e.Node.Text = e.Node.Text + "_xxxxxxxx";
}
================

How do you think? If you have any other ideas or questions, please feel
free to post here.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead



==================================================

Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.



Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.

==================================================


This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top