Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ochjings1

    Upgrade effects on EnsureID() method

    http://msdn2.microsoft.com/library/tsxh3b71.aspx It seemed to make a lot of sense - x controls in the same container, prevent ID clashes by creating a unique one, but is seems to have been discontinued, or erased... or worse. Is there a standard method of avoiding these clashes without EnsureID?
  2. ochjings1

    Upgrade effects on EnsureID() method

    Following upgrade to 2005 beta 2, code that was previously fine is now producing an error: Label errorLabel = new Label(); errorLabel.EnsureID(); "-> System.Web.UI.Control.EnsureID() is inaccessible due to its protection level" Firstly - what is the change, I can't seem to find...
  3. ochjings1

    Setting SkinID of control then retrieving control properties

    Thanks for the post - yeah probably should have copied the code in a little more carefully, hence the (). TableCell doesn't have a SkinID parameter but WebControl does so no problem there - also the Skin itself applies fine. What I'm interested in is the "you are setting a SkinID property to a...
  4. ochjings1

    Setting SkinID of control then retrieving control properties

    c# and ASP.NET When setting a SkinID which contains a property such as BackColor: TableCell thisCell = new TableCell; thisCell.SkinID = "redSkin"; ...If I attempt to access the property after this: Color cellColor = thisCell.BackColor; ...cellColor is null. I'm assuming that either the...

Part and Inventory Search

Back
Top