CodeVerge.Net Beta


   Explore    Item Entry    Members      Register  Login  
NEWSGROUP
.NET
Algorithms-Data Structures
Asp.Net
C Plus Plus
CSharp
Database
HTML
Javascript
Linq
Other
Regular Expressions
VB.Net
XML





Zone: > NEWSGROUP > Asp.Net Forum > microsoft_downloads.css_friendly_control_adapters Tags:
Item Type: NewsGroup Date Entered: 3/8/2007 3:56:37 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 23 Views: 99 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
24 Items, 2 Pages 1 2 |< << Go >> >|
Sojan80
Asp.Net User
CSSFriendly Menus not working in IE63/8/2007 3:56:37 PM

0/0

I downloaded and installed the control adapters and went through the sample but the CSSFriendly Menus don't seem to be working in IE6. Has anyone else had this problem? How do I fix it? I even tried going to the control adapters homepage and then to the menu example there in IE6 and the menus didn't work there either.
Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 4:34:12 PM

0/0

Interesting. I personally tested these on IE6 when Heidi and I developed them. I was certain that they were working properly on that browser version. You might want to consider these questions...

  1. Can you describe what you are seeing in IE6?
  2. Can you test them on another PC that is running IE6?
  3. Could your browser cache have conflicting files of some sort?
  4. Do you have JavaScript disabled within IE6?
  5. Are you overriding CSS in IE6 with user-style-sheets (typically set up to enhance accessibility)?

Have other readers on this forum encountered IE6 problems as fundamental as this?


Russ Helfand
Groovybits.com
Sojan80
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 5:01:00 PM

0/0

In IE6 the top level (tier 1) links you get the roll over color, but the drop menus never appear. The root menu on the page that points to the examples doesn't even work for me in IE6. I have tried running it on the IE6 virtual hard drive I use for testing in IE6 and I have tried it on two machines in my office that still have IE6 installed on them. In all cases the menu didn't work. I only altered the CSS such that I cahnged the link colors and the background image but I used all the rules already existing in in the example.

 

I'm not sure how to check for the browser cache problem but I would have to say I don't think that is it. No I don't have JavaScript disabled and as far as I can tell I have everything set right in my sample application. Could it be the way the JavaScript file is referenced in the web.config file? 

Sojan80
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 5:02:43 PM

0/0

Ooops I see I wasn't being clear... when I said "The root menu on the page that points to the examples doesn't even work for me in IE6." I mean that I then went to www.asp.net/cssadapters in IE6 and even the menu on the top of the page would not work in IE6 for me.
Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 5:31:12 PM

0/0

I have one PC here that is running IE6. It seems to have no problems displaying working menus on http://www.asp.net/cssadapters or http://www.asp.net/cssadapters/menu.aspx. That PC is an NT server box running IE 6.0.3790.1830 SP1.

Are you saying that you have problems with the HTML-based menus on those two URLs mentioned above on multiple PCs running a comparable version of IE6?

If so, is there any way you can ask a friend who has a PC that is completely outside your infrastructure and network to try this test on a PC running with IE6? If any other readers are reading this and have access to a box running with IE6, it would be helpful if you could report your findings here, too. Thanks.


Russ Helfand
Groovybits.com
Sojan80
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 7:30:13 PM

0/0

The boxes I tried it on are running Windows XP Pro (SP2 I believe) and IE 6.0.3790.1830 SP1 and they display the menus on http://www.asp.net/cssadapters or http://www.asp.net/cssadapters/menu.aspx. okay, but I can't seem to get them to work in IE6 when I try it in my project.

What I did was:

1. Moved all the walkthrough files to a folder named examples, but left everything else where it was.
2. I built a master page and placed my menu in that
3. I just checked my web.config file and I left everything set up the way it was by default except I set debug to false. THe line that points at the JavaScripts there looks like this:

<appSettings>
    <add key="CSSFriendly-JavaScript-Path" value="~/JavaScript"/>
  </appSettings>

The menus I have set up work in IE7, Firefox, Mozilla, and Safari, just not IE 6. Any ideas where I should start looking? 

Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 7:35:12 PM

0/0

OK, then the problem is not that the menus, as whole, won't work in IE6. Rather, the problem is with your specific implementation and usage. Whew.

Here's what I would do if I were you... I'd review the instructions here, http://www.asp.net/cssadapters/whitepaper.aspx#SamplesUsingInYourWebSite. Then I would look in my new master page and make absolutely certain that the conditional <link> is in there. It has to look like what is described by the white paper:

<link runat="server" rel="stylesheet" href="~/CSS/Import.css" type="text/css" id="AdaptersInvariantImportCSS" />
<!--[if lt IE 7]>
    <link runat="server" rel="stylesheet" href="~/CSS/BrowserSpecific/IEMenu6.css" type="text/css">
<![endif]-->

Russ Helfand
Groovybits.com
Sojan80
Asp.Net User
Re: CSSFriendly Menus not working in IE63/8/2007 10:11:14 PM

0/0

Itis, and it was, andonce I rebooted the machine everything seemed to work okay.. Thanks for all your help!
nsaunders
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 1:32:46 AM

0/0

Hi

I am having the same problem. The wesbite works fine in IE7 anf firefox but in IE6 the menu is vertical and it doesnt hover or drop down.

The website is ssasolutions.com.au

Here is the code:

<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">


<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <link rel="stylesheet" href="SimpleMenu.css" type="text/css" />
    <link runat="server" rel="stylesheet" href="~/CSS/Import.css" type="text/css" id="AdaptersInvariantImportCSS" />
<!--[if lt IE 7]>
    <p>You're using a recent version of Internet Explorer.</
    <link runat="server" rel="stylesheet" href="~/CSS/BrowserSpecific/IEMenu6.css" type="text/css" id="IEMenu6CSS" />
<![endif]-->
    <script runat="server">
    void OnClick(Object sender, MenuEventArgs e)
    {
        MessageLabel.Text = "You selected " + e.Item.Text + ".";
        e.Item.Selected = true;
    }
    </script>


</head>
<body>
    <form id="Form1" runat ="server">
            <asp:Label id="MessageLabel" runat="server" style="font-size: x-small; font-family: Lucia Sans" />
    <asp:Label id="Label1" runat="server" />
            <asp:Label id="Label2" runat="server" />
    <table id="Table_01" width="801" height="601" border="0" cellpadding="0" cellspacing="0" style="vertical-align: top">
 <tr>
  <td colspan="7" style="height: 100px">
   <img src="images/Banner.jpg" width="800" height="105" alt=""></td>
  <td style="height: 100px; width: 45px;">
   <img src="images/spacer.gif" width="1" height="105" alt=""></td>
 </tr>
 <tr>
  <td colspan="5" rowspan="1" style="height: 21px">
   <img src="images/website_02.jpg" width="234" height="21" alt=""></td>
  <td style="height: 21px; background-color: #f68a1f; width: 492px;">
            &nbsp;</td>
  <td rowspan="4" style="width: 29px">
   <img src="images/website_04.jpg" width="28" height="45" alt=""></td>
  <td style="height: 21px; width: 45px;">
   <img src="images/spacer.gif" width="1" height="17" alt=""></td>
 </tr>
 <tr>
  <td rowspan="5">
   <img src="images/website_06.jpg" width="29" height="474" alt=""></td>
  <td colspan="5" style="height: 21px">
   <img src="images/website_07.jpg" width="743" height="19" alt="" id="IMG1"></td>
  <td style="height: 21px; width: 45px;">
   <img src="images/spacer.gif" width="1" height="19" alt=""></td>
 </tr>
 <tr>
  <td colspan="5">
   <img src="images/website_08.jpg" width="743" height="4" alt=""></td>
  <td style="width: 45px">
   <img src="images/spacer.gif" width="1" height="4" alt=""></td>
 </tr>
 <tr>
  <td rowspan="3" style="width: 8px">
            <img alt="" height="700" src="images/website_09.jpg" width="7" /></td>
  <td rowspan="2" style="width: 53px">
               <asp:Button ID="Client" runat="server" Text="Client Login" width="72px" height="31px" BackColor="#f68a1f" ForeColor="White" Font-Size="X-Small" postbackurl="ClientAccess.aspx" OnClientClick="SSA" UseSubmitBehavior="false" /></td>
  <td colspan="3">
   <img src="images/website_11.jpg" width="664" height="1" alt=""></td>
  <td style="width: 45px">
   <img src="images/spacer.gif" width="1" height="1" alt=""></td>
 </tr>
 <tr>
  <td rowspan="2" style="width: 7px">
   <img src="images/website_12.jpg" width="6" height="700" alt=""></td>
  <td colspan="3" rowspan="2" style="background-image: url(images/website_13.jpg); padding-left: 10px; font-size: xx-small; background-attachment: scroll; margin-left: 2px; background-repeat: no-repeat; font-family: Arial;">
            <span style="color: #017EB7; margin-top: 0px; vertical-align: top; padding-top: 0px;" id="SPAN1">
            <iframe frameborder="0" name="SSA" src ="home.aspx" style="width: 653px; height: 664px"; scrolling="Auto">
            </iframe>
                </span>
        </td>
  <td style="height: 28px; width: 45px;">
   <img src="images/spacer.gif" width="1" height="22" alt=""></td>
 </tr>
 <tr>
  <td style="width: 53px; vertical-align: top;">
  <img alt="" height="664" src="images/website_14.jpg" style="margin-top: 0px;
                padding-top: 0px" width="72" />
   </td>
  <td style="width: 45px">
   <img src="images/spacer.gif" width="1" height="428" alt=""></td>
 </tr>
 <tr>
  <td>
   <img src="images/spacer.gif" width="29" height="1" alt=""></td>
  <td style="width: 8px">
   <img src="images/spacer.gif" width="7" height="1" alt=""></td>
  <td style="width: 53px">
   <img src="images/spacer.gif" width="72" height="1" alt=""></td>
  <td style="width: 7px">
   <img src="images/spacer.gif" width="6" height="1" alt=""></td>
  <td style="width: 103px">
   <img src="images/spacer.gif" width="120" height="1" alt="">
            <div style="z-index: 103; left: 249px; width: 530px; position: absolute; top: 122px;
                height: 19px">
        <asp:Menu ID="EntertainmentMenu" runat="server" Orientation="Horizontal" CssSelectorClass="SimpleEntertainmentMenu" Width="529px">
            <Items>
            <asp:MenuItem Text="Home" Value="Home" NavigateUrl="Home.aspx" Target="SSA"></asp:MenuItem>
                    <asp:MenuItem Text="About Us" Value="About Us" NavigateUrl="AboutUs.aspx" Target="SSA"></asp:MenuItem>
                    <asp:MenuItem Text="Products" Value="Products" NavigateUrl="Products.aspx" Target="SSA">
                        <asp:MenuItem Text="Risk Module" Value="Risk Module" NavigateUrl="RiskManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Training Module" Value="Training Module" NavigateUrl="TrainingManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Document Module" Value="Document Module" NavigateUrl="DocumentManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Contractor Module" Value="Contractor Module" NavigateUrl="ContractManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Safety Action Module" Value="Safety Action Module" NavigateUrl="SafetyActionManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Compilance Module" Value="Compilance Module" NavigateUrl="ComplianceManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Continuous Improvement" Value="Continuous Improvement Module" NavigateUrl="ContinuousManager.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="CIM System Package" Value="CIM System Package" NavigateUrl="SAM.aspx" Target="SSA"></asp:MenuItem>
                    </asp:MenuItem>
                    <asp:MenuItem Text="Services" Value="Services" NavigateUrl="Services.aspx" Target="SSA">
                        <asp:MenuItem Text="Website Client Access" Value="Website Client Access" NavigateUrl="ClientAccess.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Onsite Transition Service" Value="Onsite Transition Service" NavigateUrl="TransitionService.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="OH&amp;S System Audit Service" Value="OH&amp;S System Audit Service" NavigateUrl="AuditService.aspx" Target="SSA">
                        </asp:MenuItem>
                        <asp:MenuItem Text="Safety Testing" Value="Safety Testing" NavigateUrl="SafetyTesting.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Safety Training" Value="Safety Training" NavigateUrl="SafetyTraining.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Safety Consulting" Value="Safety Consulting" NavigateUrl="SafetyConsulting.aspx" Target="SSA"></asp:MenuItem>
                        <asp:MenuItem Text="Organisational Training" Value="Organisational Training" NavigateUrl="OrganisationalTraining.aspx" Target="SSA"></asp:MenuItem>
                    </asp:MenuItem>
                    <asp:MenuItem Text="Standards" Value="Standards" NavigateUrl="Standards.aspx" Target="SSA"></asp:MenuItem>
                <asp:MenuItem NavigateUrl="Environment.aspx" Target="SSA" Text="Environmental" Value="Environmental">
                    <asp:MenuItem NavigateUrl="EnvironmentProducts.aspx" Target="SSA" Text="Products"
                        Value="Products"></asp:MenuItem>
                    <asp:MenuItem NavigateUrl="EnvironmentServices.aspx" Target="SSA" Text="Services"
                        Value="Services"></asp:MenuItem>
                </asp:MenuItem>
                    <asp:MenuItem Text="News" Value="News" NavigateUrl="News.aspx" Target="SSA"></asp:MenuItem>
                    <asp:MenuItem Text="Partners" Value="Partners" NavigateUrl="Partners.aspx" Target="SSA"></asp:MenuItem>
                    <asp:MenuItem Text="Contact" Value="Contact" NavigateUrl="Contact.aspx" Target="SSA"></asp:MenuItem>
                </Items>
               
        </asp:Menu>
            </div>
            <div id="EntertainmentMessage">
                &nbsp;</div>

        </td>
  <td style="width: 492px">
   <img src="images/spacer.gif" width="538" height="1" alt=""></td>
  <td style="width: 29px">
   <img src="images/spacer.gif" width="28" height="1" alt=""></td>
  <td style="width: 45px"></td>
 </tr>
</table>
    </form>
</body>
</html>

bdemarzo
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 2:40:53 AM

0/0

I'm going to take a shot here and say the error may be here:

 <!--[if lt IE 7]>
    <p>You're using a recent version of Internet Explorer.</
    <link runat="server" rel="stylesheet" href="~/CSS/BrowserSpecific/IEMenu6.css" type="text/css" id="IEMenu6CSS" />
<![endif]-->

Try removing the line:

<p>You're using a recent version of Internet Explorer.</

First, this is invalid HTML -- the <p> tag is not permitted in the header. Second, it does not have a complete closing tag.

Removing that line may be the trick. Let us know if it works. 


- brian
- blog: www.sidesofmarch.com
nsaunders
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 4:11:34 AM

0/0

I put in that line of code when I was playing around with it. So by removing that code doesnt change anything.

Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 3:25:18 PM

0/0

I'd recommend that you try establishing what DOES work. Then try to see the differences between THAT and what you are now doing with your page and menu.

For example, I'd start by using your PC that is running IE6 to visit http://www.asp.net/cssadapters/menu.aspx. This is, of course, the URL to the online demonstration of the kit's menu adapter. Does this sample page work in IE6? Notice that there are three menus: the one at the top of the page and the two sample menus in the center of the page. Do all of them work when the adapters are enabled for the page (see the radio button choice on the left side of the page)?

If all of those menus work using that URL then I'd try to create a local version of the kit by installing its VSI and creating a new site based on the kit's tutorial web site template.  Run that local version of the kit on the computer that has IE6. Can you visit the local menu sample page and get the menus to work?

If those menus work locally, then I'd start to examine what might be different between what you are doing in the page that isn't working and what is going on in the local version of the menu page. Of course, this isn't a simple matter. It will take some time and effort to look at those differences one by one but this sort of strategy often works for me. I start with what I know works and then I diff to see what I'm doing different and, therefore, what the possible culprits might be.

Remember that it could be something extremely simple: like having a <link> that refers to a style sheet that you don't actually have in your site. Those sorts of problems are very hard to discover because the browser won't complain, it will simply act like you don't have that <link> in the first place. So be sure to double check that you have put all the requisite files in all the requisite places. See the instructions here, http://www.asp.net/CSSAdapters/whitepaper.aspx#SamplesUsingInYourWebSite.


Russ Helfand
Groovybits.com
nsaunders
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 9:43:43 PM

0/0

I did what you said. It turns out I was missing the javascript folder. You must not need it in IE7 cause it worked with out it.

 Thanks for your help.

Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE63/22/2007 10:54:22 PM

0/0

I'm glad you figured it out. Yes, IE7 doesn't need the JavaScript processing for the menu. You can see some logic (towards the bottom of MenuAdapter.js) that shows that it is only used for pre-IE7 releases of the browser. That explains why, in your case, the menus worked in IE7 but not IE6.
Russ Helfand
Groovybits.com
Texas_Aggie
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 6:24:25 PM

0/0

I've got a similar problem. I have a horizontal menu, works great in IE7 and FF, but the flyout/drop down portion of the menu doesn't appear in IE6. I have the javascript folder in my project, I have IE6 specific style sheet reading correctly... the menu detects the style sheets, and shows the initial row of menu items, but when you hover over them, they don't fly out.

Looking at the source code, the flyout menu items are there, they're just not displaying on hover. By looking at the feedback above, I'm assuming that the javascript is not being hit. However, I dropped an alert statement into the menu javascript hover call and it popups on hover.... so now I'm going through double checking on what I might be missing. 

 I'll continue to debug, but man this is driving me nuts. Any thoughts or ideas on what else I might have taken out of my project or missed? I'm running IE6 - 6.0.29 SP2, and the demo/sample menu DOES load... so I know its my code or my implementation. I would start over and build from scratch, but it will take forever, so I'm leaving that as a last resort.


Imagination is more important than knowledge. -- Albert Einstein
Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 7:09:15 PM

0/0

Hi Texas Aggie,

Could you please post your page's <head> content? I want to see what is actually being sent to the browser. Also, can you tell me if you are using the DLL version of the adapters or do you have the actual adapter source code in your App_Code folder?


Russ Helfand
Groovybits.com
Texas_Aggie
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 7:24:16 PM

0/0

Here is a copy of my header, I am using the files in the App_Code folder, not in the dll. I've started rebuilding the IE6 style sheet, but it is doing some really odd stuff. I've got a lot of stuff going on with background images and what nots, so it may take me a while to get it the way I want it, hopefully I'll figure out my issue soon. 

This is the header of my master page:

"server">
   
    "Content-Type" content="text/html; charset=utf-8">
    "Description" content="">
    "Keywords" content="Site Title">


"CssAdapterStyles" rel="stylesheet" runat="server" media="screen" type="text/css"  href="~/CSS/Import.css">
"MenuNavigation" rel="stylesheet" runat="server" media="screen" type="text/css"  href="~/CSS/SiteSpecific/SiteMenus.css">
"SiteStyles" rel="stylesheet" runat="server" media="screen" type="text/css"  href="~/CSS/SiteSpecific/SiteSpecific.css">
"PrintStyles" rel="stylesheet" runat="server" media="print" type="text/css"  href="~/CSS/SiteSpecific/SitePrint.css">
if lt IE 7]> "MenusNavigationForIE6" rel="stylesheet" runat="server" media="screen" type="text/css" href="~/CSS/BrowserSpecific/SiteMenusIE6.css">



"alternate" runat="server" type="application/rss+xml" title="Product 1" href="~/rss/contentfeed.aspx?typeId=1140&top=0&title=Product_1"/>
"alternate" runat="server" type="application/rss+xml" title="Product 2" href="~/rss/contentfeed.aspx?typeId=1288&top=0&title=Product_2"/>
"alternate" runat="server" type="application/rss+xml" title="Product 3" href="~/rss/contentfeed.aspx?typeId=1290&top=0&title=Product_3"/>
"alternate" runat="server" type="application/rss+xml" title="Product 4" href="~/rss/contentfeed.aspx?typeId=1292&top=0&title=Product_4"/>
"alternate" runat="server" type="application/rss+xml" title="Product 5" href="~/rss/contentfeed.aspx?typeId=1293&top=0&title=Product_5"/>

 Thanks in advance for your time and information concerning this... its intelligent people such as yourself, and great online communities such as this one, that really helps people develop better code, and better solutions!

 


Imagination is more important than knowledge. -- Albert Einstein
Texas_Aggie
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 7:27:53 PM

0/0

I'm not 100% sure why my code got cropped when I pasted it into the codeblock. I'm assuming the piece you're wanting to see is this:

<!--[if lt IE 7]>

<link id="MenusNavigationForIE6" rel="stylesheet" runat="server" media="screen" type="text/css" href="~/CSS/BrowserSpecific/SiteMenusIE6.css" />

<![endif]-->


Imagination is more important than knowledge. -- Albert Einstein
Russ Helfand
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 7:34:08 PM

0/0

Yes, Texas Aggie, this is the part I wanted to verify. I notice that you are conditionally linking to SiteMenusIE6.css though the kit provides a somewhat differently name comparable style sheet (IEMenu6.css). Does that imply that you have modified this style sheet? If so, what mods did you make? Could they be the root of the problem?
Russ Helfand
Groovybits.com
Texas_Aggie
Asp.Net User
Re: CSSFriendly Menus not working in IE64/20/2007 7:50:04 PM

0/0

Yes Russ,

 The actual CSS sheet could be (and likely is) the problem. However, for testing purposes, I left the original stylesheet in (even though I renamed it), and the menu doesn't even display. The modification that I made was to add the class name of the div that my menu is wrapped in... For example:

 .Menu ul.AspNet-Menu li

{

float: left !important;

height: 1% !important;

}

 

Where "Menu" is my class name for the div. I do this because I have two menus (top global menu and specific site menu) and a treeview running on the page. All three menu's utilize the CSSAdapters.


Imagination is more important than knowledge. -- Albert Einstein
24 Items, 2 Pages 1 2 |< << Go >> >|



Search This Site:


Meet Our Sponsors:



Other Resources:

ZPM database schema docs or API availability - novell.support.zenworks ... ZPM database schema docs or API availability, > ROOT > NEWSGROUP > Novell Forums > novell.support.zenworks.patch-management, ... cssfriendly menus not working ... simple menu navigation image question ...
What is the error about this. - advanced_asp.net.crystal_reports - Asp Net cssfriendly menus not working in ie6. adult web hosting (asp.net 2.0 + sql server 2005) ... hierarchical menu control. calendar not increasing / decreasing month ...
Not working in IE6 or 7 - ASP.NET Forums ASP.NET Forums " Microsoft Downloads " CSS Friendly Control Adapters " Not working in IE6 or 7 ... one set up for IE 7 and IE 6. My problem is that I want the ...
CSS Friendly Control Adapters <asp:Menu> control with CSSFriendly Control Adapter. safari menu control. Not working in IE6 or 7 ... disabled: any way to make CSSFriendly menus work? ...
CSS Friendly Control Adapters - Discussions Adapters were working in IE6; now they're not. aezzell. Aug ... not working in IE6. ... menus working, but nothing (as far as I'm aware) directly related ...
CSS Friendly Control Adapters - Discussions Adapters were working in IE6; now they're not ... for some time now with all my menus but not need to disable the adapter on cert...
What is the error about this. - advanced_asp.net.crystal_reports - Asp Net cssfriendly menus not working in ie6. adult web hosting (asp.net 2.0 + sql server 2005) ... calendar not increasing / decreasing month. allowing people to ...



 
All Times Are GMT