CodeVerge.Net Beta


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

ASP.NET Web Hosting – 3 Months Free!
Free 3 Months



Zone: > NEWSGROUP > Asp.Net Forum > microsoft_downloads.css_friendly_control_adapters Tags:
Item Type: NewsGroup Date Entered: 8/28/2006 3:13:33 AM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 9 Views: 122 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
10 Items, 1 Pages 1 |< << Go >> >|
Rasetti
Asp.Net User
Menu SelectedItem Problem8/28/2006 3:13:33 AM

0/0

Hi All!

(sorry for the code mess, I still can't master this editor! )

Here is the scenario:
I have several Menu controls in a webform and I want to dynamically change the style of a given menu item on selecting / desesecting it.

The menu is like this:

<asp:Menu ID="Menu1" runat="server" CssSelectorClass="DashboardMenu" Orientation="Horizontal" OnMenuItemClick="MenuItemClick">

<Items>

            <asp:MenuItem Value="0" Text="0" />

            <asp:MenuItem Value="1" Text="1" />

            <asp:MenuItem Value="2" Text="2" />

            <asp:MenuItem Value="3" Text="3" />

     </Items>
</asp:Menu>

I slightly changed the MenuAdapter BuildItem Sub code to look like this:

If ((Not IsNothing(menu)) AndAlso (Not IsNothing(item)) AndAlso (Not IsNothing(writer))) Then

writer.WriteLine()

writer.WriteBeginTag("li")

If item.Selected = False Then

writer.WriteAttribute("class", IIf(item.ChildItems.Count > 0, "AspNet-Menu-WithChildren", "AspNet-Menu-Leaf"))

Else

writer.WriteAttribute("class", IIf(item.ChildItems.Count > 0, "AspNet-Menu-WithChildren-Selected", "AspNet-Menu-Leaf-Selected"))

End If

            writer.Write(HtmlTextWriter.TagRightChar)

            writer.Indent = writer.Indent + 1

            writer.WriteLine()

 

            If (item.NavigateUrl.Length > 0 Or item.Selectable = True) Then

               writer.WriteBeginTag("a")

               If item.NavigateUrl.Length > 0 = True Then

                  writer.WriteAttribute("href", Page.ResolveUrl(item.NavigateUrl))

               Else

                  writer.WriteAttribute("href", Page.ClientScript.GetPostBackClientHyperlink(menu, "b" + item.ValuePath.Replace(menu.PathSeparator.ToString(), "\\"), True))

               End If

               If item.Selected = False Then

                  writer.WriteAttribute("class", "AspNet-Menu-Link")

               Else

                  writer.WriteAttribute("class", "AspNet-Menu-Link-Selected")

               End If

               If (item.Target.Length > 0) Then

                  writer.WriteAttribute("target", item.Target)

               End If

So, what I wanted to achieve doing this is: based on the Selected flag, I want to apply a different class to the MenuItem “li” and “a” elements, to control them through css later, like this:

.DashboardMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Leaf

{

      background-color: #F7F7F7;

}

 

.DashboardMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected

{

      background-color: #003B72;

}

 

.DashboardMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Leaf a.AspNet-Menu-Link

{    

      color: #003B72!important;

}

 

.DashboardMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li.AspNet-Menu-Leaf-Selected a.AspNet-Menu-Link-Selected

{    

      color: White!important;

}

If I explicitly set one of the items Selected property to “true”  I get the right results, but, as soon I try to change it using the “MenuItemClick” event, I don’t get the right Css class applied, even when the MenuAdapter code is called on the postback event.

  This is the HTML generated code with the selected=True property assigned throught the MenuItemClick event:

 <div class="DashboardMenu">
 <div class="AspNet-Menu-Horizontal">
  <ul class="AspNet-Menu">
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b0')" class="AspNet-Menu-Link">
     0
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b1')" class="AspNet-Menu-Link">
     1
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b2')" class="AspNet-Menu-Link">
     2
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b3')" class="AspNet-Menu-Link">
     3
    </a>
   </li>
  </ul>
 </div>
</div>

 

And here is the code generated if I set that property beforehand in the Menu properties, which is the result I want to achieve programatically

 

<asp:Menu ID="Menu1" runat="server" CssSelectorClass="DashboardMenu" Orientation="Horizontal" OnMenuItemClick="MenuItemClick">

<Items>

            <asp:MenuItem Value="0" Text="0" Selected="True" />

            <asp:MenuItem Value="1" Text="1" />

            <asp:MenuItem Value="2" Text="2" />

            <asp:MenuItem Value="3" Text="3" />

     </Items>
</asp:Menu>

<div class="DashboardMenu">
 <div class="AspNet-Menu-Horizontal">
  <ul class="AspNet-Menu">
   <li class="AspNet-Menu-Leaf-Selected">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b0')" class="AspNet-Menu-Link-Selected">
     0
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b1')" class="AspNet-Menu-Link">
     1
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b2')" class="AspNet-Menu-Link">
     2
    </a>
   </li>
   <li class="AspNet-Menu-Leaf">
    <a href="javascript:__doPostBack('ctl00$ProfilerPlaceHolder$Menu1','b3')" class="AspNet-Menu-Link">
     3
    </a>
   </li>
  </ul>
 </div>
</div> 

 

Any ideas on what i'm missing here?

Thanks,

Juan


Juan Barrera
MCTS


Please remember to click "Mark as Answer" on this post if it helped you.
Russ Helfand
Asp.Net User
Re: Menu SelectedItem Problem8/28/2006 4:43:06 PM

0/0

Hi Juan, I don't see any problem with your approach but obviously since it isn't working there is a problem somewhere.  Would you please post the code you are using for your MenuItemClick event?  Also, have you put a breakpoint in that function to make certain that you are actually hitting it?  I'll help more when I can see the code you are using there.  Thanks.


Russ Helfand
Groovybits.com
Rasetti
Asp.Net User
Re: Menu SelectedItem Problem8/28/2006 8:30:18 PM

0/0

Hi Russ!

Yes, I don't know what's happening, since it's supposed to work....

 The MenuItemClick Event is like this, I checked with breakpoints that the event is actually hit:

Protected Sub MenuClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.MenuEventArgs)

Dim Menu As Menu = CType(sender, Menu)

If Menu Is Nothing = False And Page.IsPostBack = True Then

If Menu.ID = "Menu1" Then

Menu.Items.Item(e.Item.Value).Selected = True

Menu2.Items.Item(CInt(Menu2.SelectedValue)).Selected = True

Menu3.Items.Item(CInt(Menu3.SelectedValue)).Selected = True

Menu4.Items.Item(CInt(Menu4.SelectedValue)).Selected = True

ElseIf Menu.ID = "Menu2" Then

Menu2.Items.Item(e.Item.Value).Selected = True

Menu1.Items.Item(CInt(Menu1.SelectedValue)).Selected = True

Menu3.Items.Item(CInt(Menu3.SelectedValue)).Selected = True

Menu4.Items.Item(CInt(Menu4.SelectedValue)).Selected = True

ElseIf Menu.ID = "Menu3" Then

Menu3.Items.Item(e.Item.Value).Selected = True

Menu1.Items.Item(CInt(Menu1.SelectedValue)).Selected = True

Menu2.Items.Item(CInt(Menu2.SelectedValue)).Selected = True

Menu4.Items.Item(CInt(Menu4.SelectedValue)).Selected = True

ElseIf Menu.ID = "Menu4" Then

Menu4.Items.Item(e.Item.Value).Selected = True

Menu1.Items.Item(CInt(Menu1.SelectedValue)).Selected = True

Menu2.Items.Item(CInt(Menu2.SelectedValue)).Selected = True

Menu3.Items.Item(CInt(Menu3.SelectedValue)).Selected = True

End If

GenerateAllCharts(GetData)

End If

End Sub

And the code for the four menus is like this:

<asp:Menu ID="Menu3" runat="server" CssSelectorClass="DashboardMenu" Orientation="Horizontal"

OnMenuItemClick="MenuClick">

<Items>

<asp:MenuItem Value="0" Text="Market Share" />

<asp:MenuItem Value="1" Text="Evolution Index" />

</Items>

</asp:Menu>


Juan Barrera
MCTS


Please remember to click "Mark as Answer" on this post if it helped you.
Russ Helfand
Asp.Net User
Re: Menu SelectedItem Problem8/28/2006 9:24:40 PM

0/0

Thaks for posting the code, Juan.  I'm confused by lines that look like this:

Menu2.Items.Item(CInt(Menu2.SelectedValue)).Selected = True

Why do you need that?  It looks like you are setting Menu2's selected item to be the same as what it was?  After all, the Item index is Menu2's selected value which you've set up to be the index of the item.  That seems like it resets Menu2's selected item to whatever it was.  Am I missing something?

Even if this were redundant it looks like it should be superfluous and everything should work.  So, I have a couple more questions.  Have you not only set breakpoints in this function but also stepped through it in the debugger to make sure it does exactly what you expect?  Also, do you have an calls to DataBind in your code?  I'm wondering if the selected item in each menu is somehow getting wiped out by some other chunk of logic further down the line from this function.


Russ Helfand
Groovybits.com
Rasetti
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 10:07:45 AM

0/0

Russ,

After spending some more hours on the debugger, I found the problem, even if I don't know the exact reason:

In this page, I'm using Atlas UpdatePanels and a charting tool called DotNetCharting, and, for some reason, the interaction between those two was causing the MenuItemClick event beign fired but the MenuAdapter don't, or, as you pointed, the need of explicitely set the SelectedItem because the control wasn't keeping its value.

I decided to redo all the chart's databinding process, and, with the SAME code (except, as said, for the databinding), the page is working perfect, and I could remove those redundant "SelectedItem" lines, because all the controls are working as expected. What I did mostly, was to optimize the castings, the math functions, etc. 

I'm not sure how this is related with my original problem..but it was the solution!! Big Smile
As you asked me if I had Databinding calls in the code, how this could be relatd with this issue?

Thanks

Juan


Juan Barrera
MCTS


Please remember to click "Mark as Answer" on this post if it helped you.
Russ Helfand
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 5:39:35 PM

0/0

Hi Juan, first let me congratulate you on getting this issue fixed on your own.  That's terrific.  Second, let me address your question as to why the data binding code you used to have might have been a problem.  I'm guessing that that code didn't check to see if Page.IsPostBack was true or false.  I'm guessing the page was binding regardless of whether or not it was posting back.  Is that correct?  If so, then that might explain things.  I'm not sure but often binding data during a post back wipes out some of the viewstate info because you are essentially saying to the framework (during a binding operation) "go and refresh my data".  That might mean that the framework rebuilds menus and trees and things from the original markup like the MenuItem tags, etc.  This is just conjecture.  I just know from lots of experience that when settings seem to get "reset" mysteriously you need to see if you are doing any data binding operations that might be "resetting" things in a way that you don't really want.  Sorry to make this so vague!


Russ Helfand
Groovybits.com
Rasetti
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 9:00:33 PM

0/0

Thank you Russ!

The thing that's still keeping me thinking, is that i'm not databinding any of the menu controls, just the Charts.

And, in fact, i'm checking for Page.IsPostBack, because on the first load (Page.IsPostBack=False) I read the .xls file that contains the data and store the produced tables as Session Items. So, from the second pass (Page.IsPostBack=True) the data is beign deserialized from the different Session objects

And, more over, now that the page is working, the Databinding process is exactly the same, except for the way the "GetData" function "reads" the .xls file or the Session object. But there were no changes in the sequence of events, so it still amazes me why now it's working and before it wasn't!

 


Juan Barrera
MCTS


Please remember to click "Mark as Answer" on this post if it helped you.
Russ Helfand
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 9:10:37 PM

0/0

Wow.  That is odd.  We probably need to just accept that there is a logical answer but we may not uncover it due to the inherent limitations of collaborating via forum chats like this.  Perhaps it is enough to be happy that you got it working! Ha ha.
Russ Helfand
Groovybits.com
Rasetti
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 10:50:06 PM

0/0

Yeah! That's right!

As I'm using a lot the Atlas controls and the Adapters I'd like to understand as much as I can how they work together, but, in this case, as you said: should be a logical answer, but let's just be happy with get it working! :)

BTW, in the next release of the controls, is there a solution to "differentiate" Selected Items through css, like what I did? 

 


Juan Barrera
MCTS


Please remember to click "Mark as Answer" on this post if it helped you.
Russ Helfand
Asp.Net User
Re: Menu SelectedItem Problem8/29/2006 11:17:37 PM

0/0

Yes, the next rev of the kit differentiates menu items and tree nodes that are selected.  They are "flagged" with a special class.
Russ Helfand
Groovybits.com
10 Items, 1 Pages 1 |< << Go >> >|


Free Download:

Books:
XNA 2.0 Game Programming Recipes: A Problem-Solution Approach Authors: Riemer Grootjans, Pages: 600, Published: 2008
Alan Simpson's Windows XP Bible Authors: Alan Simpson, Pages: 1200, Published: 2005
Mac OS X Tiger For Dummies Authors: Bob LeVitus, Pages: 432, Published: 2005
Adaptive Technologies for Learning & Work Environments Authors: Joseph J. Lazzaro, Pages: 204, Published: 2001
Introduction to Java Programming, Comprehensive: Comprehensive Version Authors: Y. Daniel Liang, Pages: 1328, Published: 2008
Windows Server 2003 in a Nutshell Authors: Mitch Tulloch, Pages: 647, Published: 2003
The Hidden Power of Illustrator CS: Web Graphics Techniques Authors: Steve Kurth, Pages: 329, Published: 2003
Computing for Numerical Methods Using Visual C++ Authors: Salleh Shaharuddin, Shaharuddin Salleh, Albert Y. Zomaya, Sakhinah A. Bakar, Pages: 448, Published: 2007
Windows Vista: The Definitive Guide Authors: William R. Stanek, Pages: 922, Published: 2007

Web:
Menu SelectedItem Problem - ASP.NET Forums
Menu.SelectedItem Property (System.Web.UI.WebControls) Use the SelectedItem property to determine the menu item selected by the user. ... End Sub Menu SelectedItem ...<br /><a href="http://www.tech-archive.net/pdf/Archive/DotNet/microsoft.public.dotnet.framework.aspnet.webcontrols/2008-05/msg00021.pdf" title="RE: Menu control a step behind on Selected Item" target="_" ><b>RE: Menu control a step behind on Selected Item</b></a> This problem was caused by a naming collision. I had created a form called. " Menu" which ... 'Menu' does not contain a definition for 'SelectedItem'. ...<br /><a href="http://www.softcomplex.com/forum/viewthread_743/" title="Tigra Tree Menu Product Family - Tigra Tree Menu PRO - Selected ..." target="_" ><b>Tigra Tree Menu Product Family - Tigra Tree Menu PRO - Selected ...</b></a> Tigra Tree Menu PRO - Selected Item Problem. ... Selected Item Problem I'm having a problem with TM Pro showing a leaf as being selected. ...<br /><a href="http://www.velocityreviews.com/forums/t361053-menu-control-problem-with-setting-selected-item.html" title="Menu control - problem with setting selected item" target="_" ><b>Menu control - problem with setting selected item</b></a> Talk about Menu control - problem with setting selected item.<br /><a href="http://www.codenewsgroups.net/group/microsoft.public.dotnet.framework.aspnet.webcontrols/topic17041.aspx" title="Menu control a step behind on Selected Item" target="_" ><b>Menu control a step behind on Selected Item</b></a> Response.Write("Menu selected item = " + Menu1.SelectedItem.Text); .... Dynamic Templatefield problem gridview c# ...<br /><a href="http://authors.aspalliance.com/aspxtreme/sys/web/ui/webcontrols/MenuClassSelectedItem.aspx" title="Menu.SelectedItem Property" target="_" ><b>Menu.SelectedItem Property</b></a> NOTE: When a MenuItem in a Menu control is in navigation mode, the SelectedItem property returns a null reference ( Nothing in Visual Basic ) when that menu ...<br /><a href="http://www.telerik.com/community/forums/aspnet/menu/selected-menu-item-menu-selecteditem-ref.aspx" title="Selected menu item (Menu.SelectedItem ref.)" target="_" ><b>Selected menu item (Menu.SelectedItem ref.)</b></a> SelectedItem but I could not find similar telerik menu references that I ... is false for second or third level menu items. Any idea what the problem is? ...<br /><a href="https://lists.ubuntu.com/archives/ubuntu-mozillateam-bugs/2008-April/034542.html" title="[Bug 205344] Re: [Hardy] Menu bar has a color problem - selected ..." target="_" ><b>[Bug 205344] Re: [Hardy] Menu bar has a color problem - selected ...</b></a> But there is an Ubuntu Forums thread at: http://ubuntuforums.org/showthread.php? t=576703 -- [Hardy] Menu bar has a color problem - selected item unreadable ...<br /><a href="http://forums.asp.net/p/1026985/1401672.aspx" title="Menu adapter - selected item image problem - ASP.NET Forums" target="_" ><b>Menu adapter - selected item image problem - ASP.NET Forums</b></a> Menu adapter - selected item image problem. Last post 09-17-2006 3:51 PM by Russ Helfand. 1 replies. Sort Posts:. Oldest to newest, Newest to oldest ...<br /><br /><b>Videos:</b><br /><img url="http://video.google.com/googleplayer.swf?videoUrl=http://vp.video.google.com/videodownload%3Fversion%3D0%26secureurl%3DXQAAADeAwixESFlcDQoxu5J_dfckZLaORrtjfuQR0d98NISEZhE76jTyvODm98nAeLpjpDsR7LwGP4HcrF3YRSHlRCtiYBtpHyL4WSAy7zQ_7nEagWzPn-vjyZYHNt8mdEINdA%26sigh%3DTssE5zKQIKIFzBm8CZP1A2o13gY%26begin%3D0%26len%3D448682%26docid%3D-2999297239115101083&thumbnailUrl=http://3.gvt0.com/ThumbnailServer2%3Fapp%3Dvss%26contentid%3Dcac9a3b6ccb4b7d7%26offsetms%3D10000%26itag%3Dw160%26hl%3Den%26sigh%3Dxx9PpSqdBWuv00bYo5UmqcJkam0&docid=-2999297239115101083&hl=en&q=Menu+SelectedItem+Problem+(site:video.google.com+OR+site:youtube.com)&source=uds&playerMode=simple&autoPlay=true" onmouseover="Video_OnMouseOver(this,event)" src="http://www.codeverge.net/img/rr/popout.gif" title="http://video.google.com/googleplayer.swf?videoUrl=http://vp.video.google.com/videodownload%3Fversion%3D0%26secureurl%3DXQAAADeAwixESFlcDQoxu5J_dfckZLaORrtjfuQR0d98NISEZhE76jTyvODm98nAeLpjpDsR7LwGP4HcrF3YRSHlRCtiYBtpHyL4WSAy7zQ_7nEagWzPn-vjyZYHNt8mdEINdA%26sigh%3DTssE5zKQIKIFzBm8CZP1A2o13gY%26begin%3D0%26len%3D448682%26docid%3D-2999297239115101083&thumbnailUrl=http://3.gvt0.com/ThumbnailServer2%3Fapp%3Dvss%26contentid%3Dcac9a3b6ccb4b7d7%26offsetms%3D10000%26itag%3Dw160%26hl%3Den%26sigh%3Dxx9PpSqdBWuv00bYo5UmqcJkam0&docid=-2999297239115101083&hl=en&q=Menu+SelectedItem+Problem+(site:video.google.com+OR+site:youtube.com)&source=uds&playerMode=simple&autoPlay=true" /> <a href="http://www.google.com/url?q=http://video.google.com/videoplay%3Fdocid%3D-2999297239115101083&source=video&vgc=rss&usg=AFQjCNF9iYhXKHBVv1dju8FReBt79KC9eA" target="_" ><img src="http://www.codeverge.net/img/rr/video.png" title="Lab with Leo Laporte Episode 101 - Randal L. Schwartz" /></a> <a href="http://www.codeverge.net/video-play.aspx?url=http%3a%2f%2fvideo.google.com%2fgoogleplayer.swf%3fvideoUrl%3dhttp%3a%2f%2fvp.video.google.com%2fvideodownload%253Fversion%253D0%2526secureurl%253DXQAAADeAwixESFlcDQoxu5J_dfckZLaORrtjfuQR0d98NISEZhE76jTyvODm98nAeLpjpDsR7LwGP4HcrF3YRSHlRCtiYBtpHyL4WSAy7zQ_7nEagWzPn-vjyZYHNt8mdEINdA%2526sigh%253DTssE5zKQIKIFzBm8CZP1A2o13gY%2526begin%253D0%2526len%253D448682%2526docid%253D-2999297239115101083%26thumbnailUrl%3dhttp%3a%2f%2f3.gvt0.com%2fThumbnailServer2%253Fapp%253Dvss%2526contentid%253Dcac9a3b6ccb4b7d7%2526offsetms%253D10000%2526itag%253Dw160%2526hl%253Den%2526sigh%253Dxx9PpSqdBWuv00bYo5UmqcJkam0%26docid%3d-2999297239115101083%26hl%3den%26q%3dMenu%2bSelectedItem%2bProblem%2b(site%3avideo.google.com%2bOR%2bsite%3ayoutube.com)%26source%3duds%26playerMode%3dsimple%26autoPlay%3dtrue&title=Lab with Leo Laporte Episode 101 - Randal L. Schwartz" title="Lab with Leo Laporte Episode 101 - Randal L. Schwartz" ><b>Lab with Leo Laporte Episode 101 - Randal L. Schwartz</b></a> I’ll show how to set up and use the Quicksilver "proxy object" to perform actions on the currently-selected item, such as text from a web page or ...<br /><img url="http://video.google.com/googleplayer.swf?videoUrl=http://vp.video.google.com/videodownload%3Fversion%3D0%26secureurl%3DXgAAAE5z5Qs0MHOWJ1t4_N7SWri3oDnZQPMYiS9udnsZcYqjKtGBH4OOyuK8hHvNgh9tzGDxH10XupCbifHV4-zKb4oL3Bncl9iLGB5XLK49d2eMvUvlJpT9xB7tfV54KHs9Dg%26sigh%3DqHBK0d3Y0oaAyI4OIo8rUgLfcYQ%26begin%3D0%26len%3D12840967%26docid%3D4489657869740827502&thumbnailUrl=http://0.gvt0.com/ThumbnailServer2%3Fapp%3Dvss%26contentid%3D40b9ce8709a7f8c4%26offsetms%3D5000%26itag%3Dw160%26hl%3Den%26sigh%3DkQbDn6fIWY0DBuRkiN_coolG8hA&docid=4489657869740827502&hl=en&q=Menu+SelectedItem+Problem+(site:video.google.com+OR+site:youtube.com)&source=uds&playerMode=simple&autoPlay=true" onmouseover="Video_OnMouseOver(this,event)" src="http://www.codeverge.net/img/rr/popout.gif" title="http://video.google.com/googleplayer.swf?videoUrl=http://vp.video.google.com/videodownload%3Fversion%3D0%26secureurl%3DXgAAAE5z5Qs0MHOWJ1t4_N7SWri3oDnZQPMYiS9udnsZcYqjKtGBH4OOyuK8hHvNgh9tzGDxH10XupCbifHV4-zKb4oL3Bncl9iLGB5XLK49d2eMvUvlJpT9xB7tfV54KHs9Dg%26sigh%3DqHBK0d3Y0oaAyI4OIo8rUgLfcYQ%26begin%3D0%26len%3D12840967%26docid%3D4489657869740827502&thumbnailUrl=http://0.gvt0.com/ThumbnailServer2%3Fapp%3Dvss%26contentid%3D40b9ce8709a7f8c4%26offsetms%3D5000%26itag%3Dw160%26hl%3Den%26sigh%3DkQbDn6fIWY0DBuRkiN_coolG8hA&docid=4489657869740827502&hl=en&q=Menu+SelectedItem+Problem+(site:video.google.com+OR+site:youtube.com)&source=uds&playerMode=simple&autoPlay=true" /> <a href="http://www.google.com/url?q=http://video.google.com/videoplay%3Fdocid%3D4489657869740827502&source=video&vgc=rss&usg=AFQjCNHdFjSvNHjesI5ZI6b_3b8gnpNqrg" target="_" ><img src="http://www.codeverge.net/img/rr/video.png" title="Long Beach City Council Meeting" /></a> <a href="http://www.codeverge.net/video-play.aspx?url=http%3a%2f%2fvideo.google.com%2fgoogleplayer.swf%3fvideoUrl%3dhttp%3a%2f%2fvp.video.google.com%2fvideodownload%253Fversion%253D0%2526secureurl%253DXgAAAE5z5Qs0MHOWJ1t4_N7SWri3oDnZQPMYiS9udnsZcYqjKtGBH4OOyuK8hHvNgh9tzGDxH10XupCbifHV4-zKb4oL3Bncl9iLGB5XLK49d2eMvUvlJpT9xB7tfV54KHs9Dg%2526sigh%253DqHBK0d3Y0oaAyI4OIo8rUgLfcYQ%2526begin%253D0%2526len%253D12840967%2526docid%253D4489657869740827502%26thumbnailUrl%3dhttp%3a%2f%2f0.gvt0.com%2fThumbnailServer2%253Fapp%253Dvss%2526contentid%253D40b9ce8709a7f8c4%2526offsetms%253D5000%2526itag%253Dw160%2526hl%253Den%2526sigh%253DkQbDn6fIWY0DBuRkiN_coolG8hA%26docid%3d4489657869740827502%26hl%3den%26q%3dMenu%2bSelectedItem%2bProblem%2b(site%3avideo.google.com%2bOR%2bsite%3ayoutube.com)%26source%3duds%26playerMode%3dsimple%26autoPlay%3dtrue&title=Long Beach City Council Meeting" title="Long Beach City Council Meeting" ><b>Long Beach City Council Meeting</b></a> Long Beach City Council Meeting<br /><img url="http://www.youtube.com/v/EufVizUCSOI&fs=1&hl=en&source=uds&autoplay=1" onmouseover="Video_OnMouseOver(this,event)" src="http://www.codeverge.net/img/rr/popout.gif" title="http://www.youtube.com/v/EufVizUCSOI&fs=1&hl=en&source=uds&autoplay=1" /> <a href="http://www.google.com/url?q=http://www.youtube.com/watch%3Fv%3DEufVizUCSOI&source=video&vgc=rss&usg=AFQjCNFb-4raFy1mTuKLZt9CK-zw5zaULw" target="_" ><img src="http://www.codeverge.net/img/rr/video.png" title="How To Remove Windows Vista And Install Windows XP" /></a> <a href="http://www.codeverge.net/video-play.aspx?url=http%3a%2f%2fwww.youtube.com%2fv%2fEufVizUCSOI%26fs%3d1%26hl%3den%26source%3duds%26autoplay%3d1&title=How To Remove Windows Vista And Install Windows XP" title="How To Remove Windows Vista And Install Windows XP" ><b>How To Remove Windows Vista And Install Windows XP</b></a> Have a problem? Ask in the forum: http://www.mob3.co.uk/forum or the live chat: http://www.mob3.co.uk/chat **IF YOU RECEIVE AN ERROR ...<br /></div></td> <td valign="top"> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 7; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script></td> </tr></table> <br /> <table width="100%"> <tr> <td style="width: 50%"> </td> <td> </td> </tr> </table> <br /> <div style="text-align:center"> <br /> <br /> <b>Search This Site: </b> <input type="hidden" name="cx" value="001993386287184627138:djlrq6ok3yq" /> <input type="hidden" name="cof" value="FORID:10" /> <input type="text" name="q2" id="q2" size="25" onkeypress="if(event.keyCode == 13){SearchSite('q2');return false;}" value="" /> <input type="button" name="sa" value="Search" class="Button" onclick="SearchSite('q2');" /> </div> <br /> <script type="text/javascript"> function doSubscribe(S, E){ DoSubscribe(587523, S,E); } function doFavorite(S, E){ DoFavorite(587523, S,E); } </script> </td> <td id="rightPanel" valign="top" style="width: 100px; text-align: right;"> <div style="text-align: left; font-weight: bold; margin-left: 15px"><br /> <img src="http://www.codeverge.net/images/icons/envelope2.gif" /> <a rel="nofollow" onclick="OpenInviteWin();">Invite</a><br /> <img src="http://www.codeverge.net/images/icons/folders.gif" /> <a href="../History/history_items.aspx" id="ctl00_CPH_RightMenu_A2" rel="nofollow">History</a> <br /> <img src="http://www.codeverge.net/images/icons/books.gif" /> <a href="../resources/computers" id="ctl00_CPH_RightMenu_A1">Resources</a><br /> <img style="border:0px" src="http://www.codeverge.net/images/icons/user2.gif" /> <a href="../members.aspx" id="ctl00_CPH_RightMenu_A6">Members</a><br /> <img src="http://www.codeverge.net/images/icons/statements.gif" /> <a href="../sitemap/SiteMap.aspx" id="ctl00_CPH_RightMenu_A5" rel="nofollow">SiteMap</a> </div> <br /> <br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 3; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 3; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 2; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <br /><br /> <script type="text/javascript"> lqm_channel = 1; lqm_publisher = 303; lqm_zone = 1; lqm_format = 2; </script> <script type="text/javascript" src="http://a.lakequincy.com/s.js"></script> <div style="height: 100px"></div> <div style="width: 100px; overflow: hidden; text-align: left; padding: 5px; font-family: Arial;"> <br /> <a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/dnn-2.0-skinning-fantastic" title="dnn 2.0 skinning = fantastic" >dnn 2.0 skinning = fantastic</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/2.x-to-3.x-module-conversion" title="2.x to 3.x module conversion..." >2.x to 3.x module conversion...</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/how-to-generate-and-install-microsoft.web.ui.webcontrols.dll" title="how to generate and install microsoft.web.ui.webcontrols.dll" >how to generate and install microsoft.web.ui.webcontrols.dll</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/suggestion-to-the-core-team-about-projects" title="suggestion to the core team: about projects" >suggestion to the core team: about projects</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/substantial-changes-in-3.08" title="substantial changes in 3.08?" >substantial changes in 3.08?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/skin-path" title="skin path ?" >skin path ?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/regarding-bug-000387-on-gdn" title="regarding bug # 000387 on gdn" >regarding bug # 000387 on gdn</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/re-zipping-language-files-with-winzip-fails-to-upload" title="re-zipping language files with winzip fails to upload." >re-zipping language files with winzip fails to upload.</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/vwd-2005-express-and-dnn4.0-source" title="vwd 2005 express and dnn4.0 source" >vwd 2005 express and dnn4.0 source</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/css-and-main-nav" title="css and main nav" >css and main nav</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/audio-cutting-off-in-flash-movies" title="audio cutting off in flash movies" >audio cutting off in flash movies</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/iframe-module,2" title="iframe module" >iframe module</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/odd-security-model-feedback-please" title="odd security model - feedback please?" >odd security model - feedback please?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/this-code-sets-skin-info-for-portal-templates" title="this code sets skin info for portal templates" >this code sets skin info for portal templates</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/permission-problem-while-running-single-instance-of-dnn-on-2-servers" title="permission problem while running single instance of dnn on 2 servers" >permission problem while running single instance of dnn on 2 servers</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/unable-to-add-controls-to-module-definitions" title="unable to add controls to module definitions" >unable to add controls to module definitions</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/mysql" title="mysql ???" >mysql ???</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/my-site-feedback-suggestions-sought" title="my site, feedback/suggestions sought.." >my site, feedback/suggestions sought..</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/asp-net-2.0-module-compatiblity" title="asp .net 2.0 module compatiblity" >asp .net 2.0 module compatiblity</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/how-to-install-sql-server-and-dnn-3.0.8" title="how to install sql server and dnn 3.0.8" >how to install sql server and dnn 3.0.8</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/3.08-slow-to-load-site-settings-and-other-admin-functions" title="3.08 slow to load site settings and other admin functions" >3.08 slow to load site settings and other admin functions</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/show-pages-not-on-tab-dnn-3.0.11" title="show pages not on tab (dnn 3.0.11)" >show pages not on tab (dnn 3.0.11)</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/smtp-cdo-messages-intermittent" title="smtp cdo messages intermittent" >smtp cdo messages intermittent</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/comparison-between-adverageous-and-active-forums" title="comparison between adverageous and active forums" >comparison between adverageous and active forums</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/refresh-interval-for-dnn-pages" title="refresh interval for dnn pages" >refresh interval for dnn pages</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/avcalendar-2.0-on-dnn-2rc" title="avcalendar 2.0 on dnn 2rc" >avcalendar 2.0 on dnn 2rc</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/why-dnn-does-not-use-dsfck-as-default-htmleditorprovider-it-seems-much-butter-then-the-actual-ftb3-compatible-mozilla-ie7-beta" title="why dnn does not use dsfck as default htmleditorprovider ? it seems much butter then the actual ftb3 (compatible mozilla, ie7 beta !)" >why dnn does not use dsfck as default htmleditorprovider ? it seems much butter then the actual ftb3 (compatible mozilla, ie7 beta !)</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/verisign-new-seal-program" title="verisign new seal program" >verisign new seal program</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/how-do-you-add-a-missing-myblog-module" title="how do you add a missing myblog module?" >how do you add a missing myblog module?</a><br/><br/><a href="http://www.codeverge.net/ng.asp-net-forum.dotnetnuke/adding-fields" title="adding fields" >adding fields</a><br/><br/> </div> </td> </tr> <tr> <td id="leftBottom" valign="top" style="width: 100px">   </td> <td id="ctl00_centerBottom" valign="top" align="center"> <b> <a rel="nofollow" href='http://www.codeverge.net/sitemap/privacy.aspx'>Privacy</a> | <a rel="nofollow" href='http://www.codeverge.net/sitemap/contact.aspx'>Contact Us</a></b> <br /> All Times Are GMT </td> <td id="rightBottom" valign="top" style="width: 100px"> </td> </tr> </table> <script type="text/javascript"> //<![CDATA[ var _Rating_MemberRating = -1; var _Rating_tbl = document.getElementById('ctl00_CPH_centerFront_ctl28'); function Rating_RollRates(){ if(_Rating_tbl.rows.length < 10){ for ( i =10 ; i >0; i--){ setTimeout( function(){ var row = _Rating_tbl.insertRow(_Rating_tbl.rows.length); var cell = row.insertCell(0); cell.onclick = function(){Rating_RateIt(this.innerHTML);}; cell.innerHTML = 12 - _Rating_tbl.rows.length; cell.className = 'Rating_AvgRating'; if(cell.innerHTML == _Rating_MemberRating){ cell.title='My Rating'; cell.style.color='orange'; } }, (10-i) * 25); } setTimeout(function(){Rating_Close()},10000) } else{ Rating_Close() } } function Rating_Close(){ if(_Rating_tbl.rows.length > 1) for ( i =0 ; i < 10; i++) setTimeout(function(){ _Rating_tbl.deleteRow(_Rating_tbl.rows.length -1 )} , i * 25) } function Rating_RateIt(rating){ ItemPageWs.RateItem(587523, rating, function(A){ document.getElementById('ctl00_CPH_centerFront_ctl29').innerHTML ='('+ parseFloat(A[0]).toFixed(2) +', '+ A[1] +')'; _Rating_MemberRating = rating; Rating_RollRates(); AlertMsg('Your Rating Was Updated'); Afirm( document.getElementById('ctl00_CPH_centerFront_ctl29')); }); } RestrictHeights('tcContent');Sys.Application.initialize(); //]]> </script> </form> </body> </html> <script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=searchbox_001993386287184627138%3Adjlrq6ok3yq&lang=en"></script> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-3447589-1"); pageTracker._trackPageview(); </script>