Search

You searched for the word(s): userid:790587

Matching Posts

  • asp.net menu w. css control adapter

    The menu has up to 3 elements deep at the moment and I have two problems with it. First, if the menu children get to close to the edge of the screen they don't render to the left of the element - they keep going to the right and render off the screen (I have been told this must be fixed - knew that was coming). Second, our menu can wrap when it is on a smaller screen and the user has multiple root elements. The wrapper menu bleeds through the child elements of the first row and makes the children
    Posted to Master Pages, Themes and Navigation Controls (Forum) by smcintire1981 on 7/7/2009
    Filed under: CSS, menu, css meu
  • .net menu (using css adapter) won't display children in ie7/8

    We are currently using the .net menu with the css adapter. The menu works great in IE6. However, the menu will not display the children in ie7/8. I am currently trying to change z-index to make it show up ( http://blogs.msdn.com/giorgio/archive/2009/02/01/asp-net-menu-and-ie8-rendering-white-issue.aspx ). setup of site is as following (multiple themes and master pages) master page header.ascx --- menu content (.aspx) footer.ascx Thanks for any help!
  • Re: .net menu (using css adapter) won't display children in ie7/8

    When looking @ the examples on the asp.net css adapters home page (browsing the page html) I noticed the page loads a menu.js file. I dug to the js file and found it would use javascript hover/unhover events for browsers older than IE7. I took the script and placed it in my page - no problem. I also borrowed their menu .css to see if that helped. The menu .css had the same issues on my machine the current .css had (their .css worked fine for their site using my machine - wierd). I ended up removing
  • Re: multiple projects

    Couple of quick notes: 1. .net 2005 requires sp1 to use the web project - otherwise you're stuck with the web site (very different) 2. .net 2005 will not show the solution file for a single project - you have to use the menu to add the second project (after that the solution shows up) menu - file - add - existing project - etc... 3. .net 2005 should allow you to use your old structure - we use multiple folders containing all kinds of levels and junk hope this helps
    Posted to Web Forms (Forum) by smcintire1981 on 9/23/2008
  • Re: State Information Error with reload from Popup

    are you writing values from the popup back to the screen? if you write values from the popup into a control it sometimes invalidates your state - sometimes writing values to hidden fields helps
    Posted to Web Forms (Forum) by smcintire1981 on 9/23/2008
  • Re: Postback in Javascript without raising custom validators of the form

    If you use a button to close your child window the following should work for you. in the close method ties to the button: var myForm = window.opener; myForm.DoPostBackForChild('target','argument'); //add - code to close window ----------------------------------------------------------- in the parent window have the following function function DoPostBackForChild(target, argument){ __doPostBack(target,argument); } best of luck
    Posted to Web Forms (Forum) by smcintire1981 on 9/16/2008
  • Re: Visual Studio Locks-up

    Visual studio works find 99% of the time. It's that 1% of the time I forget to respond to the dialog window. If I close vs and restart all is fine. Also, I do not have permissions to kill internet or norton (@_@)??. I was really curious if anyone else had experienced this issue and if they had a solution. Thank you all for the continued suggestions!
    Posted to Getting Started (Forum) by smcintire1981 on 8/28/2008
  • Re: Advice Needed! asp:DropDownList ddlCountries 'Is not declared'

    mis spoke on the last response (if it posted???) your method that is populating dd is not finding the control so you are setting the datasource of nothing - which explodes with a object reference error best of luck...
    Posted to Web Forms (Forum) by smcintire1981 on 8/28/2008
  • Re: Advice Needed! asp:DropDownList ddlCountries 'Is not declared'

    change Dim dd As DropDownList to Dim dd As New DropDownList
    Posted to Web Forms (Forum) by smcintire1981 on 8/28/2008
  • Re: Visual Studio Locks-up

    Norton... Does that occasionally contribute?
    Posted to Getting Started (Forum) by smcintire1981 on 8/28/2008
Page 1 of 4 (31 items) 1 2 3 4 Next >