CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
web_forms
getting_started
data_presentation_controls
dotnetnuke
data_access-sql_server_sql_server_express_and_sqldatasource_control
security
client_side_web_development
novell-support-groupwise-6x-clients
data_access-data_access_and_objectdatasource_control
asp-net_ajax-asp-net_ajax_control_toolkit
novell-support-netware-6x-install-upgrade
asp-net_ajax-asp-net_ajax_discussion_and_suggestions
novell-support-netware-6x-administration-tools
master_pages_themes_and_navigation_controls
configuration_and_deployment
novell-support-netware-client-winnt-2x-xp
novell-support-groupwise-7x-clients
asp-net_ajax-asp-net_ajax_ui
novell-support-edirectory-netware
community-free_for_all
visual_studio_2005
novell-support-groupwise-6x-install-setup
data_access-xml_and_xmldatasource_control
control-cancel
novell-support-iprint
advanced_asp-net-crystal_reports
data_access-xml_web_services
microsoft-public-access
novell-community-chat
state_management
novell-support-netware-6x-abends-hangs
dotnetnuke-getting_started
novell-support-groupwise-6x-gwia
-net_languages-c
novell-support-identity-manager-engine-drivers
novell-support-groupwise-discontinued
advanced_asp-net-architecture
opensuse-org-suse-linux-support-install-configure-administration
dotnetnuke-custom_modules
novell-support-groupwise-7x-install-setup-admin
novell-support-netware-6x-storage-media
novell-support-groupwise-6x-agents
installation_and_setup
data_access-access_databases_and_accessdatasource_control
windows-hosting_open_forum
visual_web_developer_2005_express
novell-support-groupwise-6x-web-access
novell-support-netware-6x-server-backup
macromedia-dreamweaver
novell-support-netware-5x-administration-tools
novell-support-ifolder
novell-support-bordermanager-install-setup
novell-support-imanager
microsoft-public-dotnet-framework-aspnet
novell-support-netware-5x-install-upgrade
novell-support-cluster-services
novell-support-bordermanager-proxies
novell-support-newsflash
advanced_asp-net-sql_server_reporting_services
microsoft-public-dotnet-languages-csharp
web_parts_and_personalization
about_this_site-feedback_on_this_website
ibm-software-websphere-portal-server
novell-support-netware-dns-dhcp
novell-support-zenworks-desktops-4x-app-launcher
-net_languages-visual_basic_-net
advanced_asp-net-custom_server_controls
novell-support-bordermanager-vpn
novell-support-ndps-neps
microsoft-public-sqlserver-programming
novell-support-netware-webserver
community-jobs
novell-support-netware-4x
advanced_asp-net-mobile_and_handheld_devices
internet_explorer_web_controls
novell-support-zenworks-desktops-4x-install-setup
novell-support-edirectory-linux
novell-support-groupwise-7x-gwia
development_tools-web_matrix_general_discussions
microsoft-public-access-formscoding
macromedia-flash
community-announcements
portal_starter_kit
novell-support-zenworks-desktops-4x-management-agent
novell-support-zenworks-patch-management
novell-support-native-file-access
microsoft-public-access-queries
microsoft-public-access-forms
novell-support-groupwise-7x-web-access
novell-support-netware-small-business-6x
data_access-active_directory_and_ldap
novell-support-edirectory-windows
novell-support-groupwise-7x-agents
novell-support-ichain
data_access-oracle
novell-support-zenworks-desktop-management-6x-imaging
novell-support-groupwise-7x-wireless
novell-support-netware-5x-abends-hangs
advanced_asp-net-localization
novell-support-zenworks-desktop-management-7x-imaging-server-nw-win




Can Reply:  No Members Can Edit: No Online: Yes
Zone: > Asp.Net Forum > general_asp.net.master_pages_themes_and_navigation_controls Tags:
Item Type: Date Entered: 7/12/2005 2:20:01 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
NR
XPoints: N/A Replies: 3 Views: 55 Favorited: 0 Favorite
4 Items, 1 Pages 1 |< << Go >> >|
"Ozmael" <>
NewsGroup User
Any way to use a .GIF as the PathSeparator in the SiteMapPath control?7/12/2005 2:20:01 AM

0

Is there any way to use a tiny .GIF as a PathSeparator in the SiteMapPath control?

I'd like my bread crumbs to look something like this where the PathSeparator is the orange arrow .GIF.


Regards,
"Dave Sussman"
NewsGroup User
Re: Any way to use a .GIF as the PathSeparator in the SiteMapPath control?7/12/2005 9:55:36 AM

0

Use the PathSeparatorTemplate and just add your image into the template.

Dave

"Ozmael" <>
NewsGroup User
Re: Any way to use a .GIF as the PathSeparator in the SiteMapPath control?7/13/2005 12:26:25 AM

0

Thanks Dave for pointing me in the right direction.

I've found information on the PathSeparatorTemplate in the VS 2005 Help:
ms-help://MS.VSCC.v80/MS.MSDNQTR.v80.en/MS.MSDN.v80/MS.NETDEVFX.v20.en/cpref/html/P_System_Web_UI_WebControls_SiteMapPath_PathSeparatorTemplate.htm

I'm working on the Personal Web Starter Kit in Beta 2. Based on the information in Help, I've updated my SiteMapPath in Default.Master to look like:

<
div class="nav">
<asp:SiteMapPath 
   id="SiteMapPath1" runat="Server" 
   
RenderCurrentNodeAsLink="false">
   <PathSeparatorTemplate>
      <asp:Image id="Image1" runat="server" ImageUrl="~/Images/pathsep.gif" />
   </PathSeparatorTemplate>
</asp:SiteMapPath>
&nbsp; | &nbsp;
<asp:LoginStatus ID="LoginStatus1" Runat="server" />
</div>

Unfortunately this doesn't seem to work. Looking at the HTML source of the page that gets generated, I get only a blank space. I can confirm that the image path is valid.

Do I have to add anything to Default.Master.vb? Looking at the Help page, it looks like there are some code that may need to be added but I thought that may only be required if I want to programatically control the PathSeparatorTemplate?

Any idea where I'm going wrong? I'm a bit of a noob.

Regards,

"Ozmael" <>
NewsGroup User
Re: Any way to use a .GIF as the PathSeparator in the SiteMapPath control?7/13/2005 3:09:45 AM

0

Upon reboot I've discovered that the code above actually works. Don't know what was getting stuck, but it's work now.

Thanks for your help!

Regards,
4 Items, 1 Pages 1 |< << Go >> >|


Free Download:













pa question

thoughts on the state of non-free modules

where is other elearn module?

dropdownlist problem

web cam software? anyone?

(3.1.1) search for custom module

strange problem when compile a custom module

mixed authentication module by tram.

using commercial controls in dnn module development

updating a custom module

dotnetnuke and microsoft reporting services

looking for knowledgebase module

how to install 0.ttt.authentication.3.0.12.zip

postback script errors and conflicts between modules

new module: nested tables

datagrid - selectedrow

custom module and show all tab settings

any free shopping cart module for dnn3.0.12+?

fillobject - record must exit?

how to set module edit rights for register user ?

deploy to root

what is the best way to pass parameters to a module instance directly through a query string? (to bypass rendering the html of desktopdefault for example)

new module - defmatchgame

wmv player

crystal reports module

html/text module absolute path for images (help!)

creating a .ascx file that can be used in a skin

a light weight ecommerce module released

upgrade path from "newblog" ot dnn blog?

new features in dnnmasters membership management suite pro - scheduler, etc.

is it possible to develop custom modules in c# rather than vb

can one place "to build modules" anywhere?

creating my own module

nested recursive ascx control implementing itemplate applied to an inner datalist

user's gallery module?

mhtml module 01.00.00

contentlinks for dnn 2.1.2 pa conversion

localization problem - this should be easy for you guyes !

free image gallery control with inline source code

project templates for use without vs.net?

binding to users

keepalive module for dnn2 (beta)

filtering returned data in module

creating a module using notepad for dnn3

problem: passing mutiple parameters using editurl?

link to register module?

scrolling announcements in 2.0?

proper method - multiple pages

the underlying connection was closed: unable to connect to the remote server.

limits on rss

 
Search This Site:

 
  Privacy | Contact Us
All Times Are GMT