<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>DotNetNuke</title><link>http://www.dotnetnuke.com/tabid/795/Default.aspx</link><description>Discussions of DotNetNuke for ASP.NET 1.x and above.  &lt;a href="http://www.dotnetnuke.com/" target="_blank"&gt;DNN Home&lt;/a&gt; &lt;a href="http://aspadvice.com/SignUp/list.aspx?l=105&amp;c=25" target="_blank"&gt;Email List&lt;/a&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Sv: Re: Sv: Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/883392.aspx</link><pubDate>Wed, 06 Apr 2005 14:41:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:883392</guid><dc:creator>masom</dc:creator><author>masom</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/883392.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=883392</wfw:commentRss><description>Hi,&lt;br&gt;
&lt;br&gt;
maybe i have an other solution for your Menu / Submenu issue.&lt;br&gt;
&lt;br&gt;
You can modify the SolpartMenu.ascx.vb to enable a Submenu-Bindoption.
Therefore you have to insert a new case witch is called "topmenu": In
this case the tab controller of the vertical menu will use the most top
node as root node. This will be the root node of the current
navigation-path. &lt;br&gt;
&lt;br&gt;&lt;span&gt;
&amp;nbsp;&lt;/span&gt;&lt;br&gt;&lt;span&gt;
'This setting indicates the root level for the menu&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Select Case LCase(Level)&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case "child"&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
intRootParent = PortalSettings.ActiveTab.TabID&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Case "same"&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
intRootParent = PortalSettings.ActiveTab.ParentId&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Case "topmenu"&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
If (Me.PortalSettings.ActiveTab.ParentId &amp;lt; 0) Then&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
intRootParent = Me.PortalSettings.ActiveTab.TabID&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Else&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Dim tabController As New tabController&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Dim tabInfo As tabInfo =
tabController.GetTab(Me.PortalSettings.ActiveTab.TabID)&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Do While (tabInfo.ParentId &amp;gt; 0)&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
intRootParent = tabInfo.ParentId&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
tabInfo = tabController.GetTab(intRootParent)&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Loop&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
End If&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
Case Else&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'root&lt;/span&gt;&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
intRootParent = -1&lt;/span&gt;&lt;br&gt;
&lt;br&gt;&lt;span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Select&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
 Hope this will be usefull &lt;br&gt;
Marcus&lt;br&gt;
&lt;/span&gt;
&lt;br&gt;
&lt;br&gt;
&lt;br&gt;</description></item><item><title>Sv: Re: Sv: Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/883015.aspx</link><pubDate>Wed, 06 Apr 2005 08:11:54 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:883015</guid><dc:creator>jan_olsmar</dc:creator><author>jan_olsmar</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/883015.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=883015</wfw:commentRss><description>&lt;P&gt;Ylva, make sure you clear the cach before testing.&lt;/P&gt;
&lt;P&gt;The change make the tab clickable thats for sure.&lt;/P&gt;</description></item><item><title>Re: Sv: Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882934.aspx</link><pubDate>Wed, 06 Apr 2005 06:15:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882934</guid><dc:creator>ylvah</dc:creator><author>ylvah</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882934.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882934</wfw:commentRss><description>&lt;P&gt;OK&amp;nbsp;:) But it did not work either...&lt;/P&gt;
&lt;P&gt;regards Ylva&lt;/P&gt;</description></item><item><title>Re: Sv: Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882747.aspx</link><pubDate>Wed, 06 Apr 2005 01:18:47 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882747</guid><dc:creator>svoeller99</dc:creator><author>svoeller99</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882747.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882747</wfw:commentRss><description>&lt;P&gt;&lt;img src="/emoticons/emotion-55.gif" alt="Idea [I]" /&gt;&lt;/P&gt;</description></item><item><title>Sv: Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882401.aspx</link><pubDate>Tue, 05 Apr 2005 19:03:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882401</guid><dc:creator>jan_olsmar</dc:creator><author>jan_olsmar</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882401.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882401</wfw:commentRss><description>&lt;P&gt;The walue should bee 0 to make it work&lt;/P&gt;
&lt;P&gt;Change from 1 to 0 &lt;img src="/emoticons/emotion-15.gif" alt="Geeked [8-|]" /&gt;&lt;/P&gt;</description></item><item><title>Re: Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882326.aspx</link><pubDate>Tue, 05 Apr 2005 18:22:03 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882326</guid><dc:creator>ylvah</dc:creator><author>ylvah</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882326.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882326</wfw:commentRss><description>&lt;P&gt;Thank you! But when I look in the table these tabs already has the value 1 on disablelink.&lt;/P&gt;
&lt;P&gt;But I can have this settings if I choose one skin for the portal and no skin for admin. Then I can choose site in the menu in the right upper corner and then I get my admin and host menu items in the default blue skin. Rather strange ;)&lt;/P&gt;
&lt;P&gt;regards Ylva&lt;/P&gt;</description></item><item><title>Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882303.aspx</link><pubDate>Tue, 05 Apr 2005 18:10:52 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882303</guid><dc:creator>jan_olsmar</dc:creator><author>jan_olsmar</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882303.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882303</wfw:commentRss><description>Its the disablelink in tabs table change fom 1 to 0</description></item><item><title>Sv: Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882285.aspx</link><pubDate>Tue, 05 Apr 2005 18:00:57 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882285</guid><dc:creator>jan_olsmar</dc:creator><author>jan_olsmar</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882285.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882285</wfw:commentRss><description>&lt;P&gt;NO Ylva you are not stupid :)&lt;/P&gt;
&lt;P&gt;There is a way around the issue but you have to manually change in the database.&lt;/P&gt;
&lt;P&gt;If you change the value for the host and admin tab to bee visible. Dont remember for the moment what field it is.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/882254.aspx</link><pubDate>Tue, 05 Apr 2005 17:43:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:882254</guid><dc:creator>ylvah</dc:creator><author>ylvah</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/882254.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=882254</wfw:commentRss><description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;That was what I wanted to do - then I could have an horisontal menu with vertical sub-menu. I works out fine except that if I do this there is no way to reach the admin and host menu items? Am I being stupid now??&lt;/P&gt;
&lt;P&gt;regards Ylva&lt;/P&gt;</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/866761.aspx</link><pubDate>Tue, 22 Mar 2005 19:45:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:866761</guid><dc:creator>svoeller99</dc:creator><author>svoeller99</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/866761.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=866761</wfw:commentRss><description>Another thing that I wanted to circumvent was the effect that this block of code has, located at the end of Links.ascx.vb --&amp;gt; Page_Load()
&lt;br /&gt;

&lt;br /&gt;
&lt;pre&gt;
&lt;br /&gt;
If strLinks = &amp;quot;&amp;quot; Then
&lt;br /&gt;
                    strLinks = BuildLinks(&amp;quot;&amp;quot;, Alignment, strSeparator, strCssClass)
&lt;br /&gt;
                End If
&lt;br /&gt;
&lt;/pre&gt;
&lt;br /&gt;

&lt;br /&gt;
If you set level to &amp;quot;child&amp;quot; and navigate to a tab that has no children, it reverts to displaying links for the tabs on the same level. I worked around it by modifying the code in Links.BuildLinks, as follows:
&lt;br /&gt;

&lt;br /&gt;
&lt;pre&gt;
&lt;br /&gt;
Select Case Level
&lt;br /&gt;
                            Case &amp;quot;Same&amp;quot;, &amp;quot;&amp;quot;
&lt;br /&gt;
                                    If objTab.ParentId = PortalSettings.ActiveTab.ParentId Then
&lt;br /&gt;
                                        strLinks += strLoop &amp;amp; AddLink(objTab.TabName, objTab.FullUrl, strCssClass)
&lt;br /&gt;
                                    End If
&lt;br /&gt;
&lt;/pre&gt;
&lt;br /&gt;

&lt;br /&gt;
...was changed to...
&lt;br /&gt;

&lt;br /&gt;
&lt;pre&gt;
&lt;br /&gt;
Select Case Level
&lt;br /&gt;
                                Case &amp;quot;Same&amp;quot;, &amp;quot;&amp;quot;
&lt;br /&gt;
                                    If Me.Level &amp;lt;&amp;gt; &amp;quot;Child&amp;quot; Then 'if we weren't originally in child mode
&lt;br /&gt;
                                        If objTab.ParentId = PortalSettings.ActiveTab.ParentId Then
&lt;br /&gt;
                                            strLinks += strLoop &amp;amp; AddLink(objTab.TabName, objTab.FullUrl, strCssClass)
&lt;br /&gt;
                                        End If
&lt;br /&gt;
                                    End If
&lt;br /&gt;
&lt;/pre&gt;
&lt;br /&gt;

&lt;br /&gt;
Sean</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/866752.aspx</link><pubDate>Tue, 22 Mar 2005 19:39:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:866752</guid><dc:creator>svoeller99</dc:creator><author>svoeller99</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/866752.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=866752</wfw:commentRss><description>Jeremy,
&lt;br /&gt;

&lt;br /&gt;
Thanks for your reply. To be more specific as to my use case....
&lt;br /&gt;

&lt;br /&gt;
I'm using the Links control, which I locate directly under the SolPartMenu, in order to display child pages of the currently selected tab. I wanted to turn off the dropdown on the current tab, because having the child tabs displayed with Links.ascx and also having a dropdown with essentially the same content seems redundant to me. I'm going for a tab/subtab feel for my skin. Maybe, in the future, there could be a new setting for skin.xml - maybe, 'dropdownactivetab', or something...
&lt;br /&gt;

&lt;br /&gt;
My modification to the code was this; I added the following line at the very beginning of the try block located at line 1072 of SolPartMenu.ascx.vb --&amp;gt; Page_Load()....
&lt;br /&gt;

&lt;br /&gt;
&lt;pre&gt;
&lt;br /&gt;
If objTab.ParentId = PortalSettings.ActiveTab.TabID Then Throw New Exception(&amp;quot;Current tab&amp;quot;) 'added to disable dropdown for selected tab
&lt;br /&gt;
&lt;/pre&gt;
&lt;br /&gt;

&lt;br /&gt;
I know it's a bit clunky - throwing an exception here - but it acheives my intended result in a one-liner.
&lt;br /&gt;

&lt;br /&gt;
Sean</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/865762.aspx</link><pubDate>Tue, 22 Mar 2005 02:22:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:865762</guid><dc:creator>JWhite</dc:creator><author>JWhite</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/865762.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=865762</wfw:commentRss><description>for the second menu skin object use the Level attribute and set it to Child or Same depending on what you want.</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/865753.aspx</link><pubDate>Tue, 22 Mar 2005 02:12:33 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:865753</guid><dc:creator>Sailu_tp</dc:creator><author>Sailu_tp</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/865753.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=865753</wfw:commentRss><description>Thanks Jeremy, i will look at it. Just wanted to ask 1 more quick question i have not received any response from any one for this so i am asking you:
&lt;br /&gt;
I need to have 1 hor menu with each of its children being vert tabs, 
&lt;br /&gt;
you have already answered the first part which is by setting the Rootonly attr,
&lt;br /&gt;
but could you give me any suggestions how i can accomplish the vert tabs for each hor tab.
&lt;br /&gt;
Please post if so. It will be really appreciated.
&lt;br /&gt;
Thanks,
&lt;br /&gt;
Sailu.</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/865750.aspx</link><pubDate>Tue, 22 Mar 2005 02:06:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:865750</guid><dc:creator>JWhite</dc:creator><author>JWhite</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/865750.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=865750</wfw:commentRss><description>depends on the type of skin you have,
&lt;br /&gt;

&lt;br /&gt;
HTML skin:  change it in the .xml file as part of the the SolPartMenu token settings
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;Name&amp;gt;RootOnly&amp;lt;/Name&amp;gt;
&lt;br /&gt;
&amp;lt;Value&amp;gt;True&amp;lt;/Value&amp;gt;
&lt;br /&gt;

&lt;br /&gt;

&lt;br /&gt;
if it's in an .ascx skin: change the control attributes
&lt;br /&gt;

&lt;br /&gt;
&amp;lt;dnn:SOLPARTMENU ... ... ... RootOnly=&amp;quot;True&amp;quot; /&amp;gt;
&lt;br /&gt;

&lt;br /&gt;</description></item><item><title>Re: SOLPartMenu - How to prevent dropdown for currently active menu item?</title><link>http://forums.asp.net/thread/865725.aspx</link><pubDate>Tue, 22 Mar 2005 01:48:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:865725</guid><dc:creator>Sailu_tp</dc:creator><author>Sailu_tp</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/865725.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=90&amp;PostID=865725</wfw:commentRss><description>Jeremy
&lt;br /&gt;
Sorry for the stupid question, but where do i set it? 
&lt;br /&gt;
Thanks,
&lt;br /&gt;
Sailu.
&lt;br /&gt;</description></item></channel></rss>