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. AntonioVino

    list all html/Page objects from codebehind

    Well I've found the problem. there was a <asp:ContentPlaceHolder> with litteral text inbetween that caused the problem. After correcting it I could walk through the entire tree. <asp:ContentPlaceHolder id="Log" runat="server">></asp:ContentPlaceHolder> caused the problem. @All: Thanks for the...
  2. AntonioVino

    list all html/Page objects from codebehind

    @jason I could do that in javascript also but I need it in codebehind and without a postback So clientside won't work Thanks anyway
  3. AntonioVino

    list all html/Page objects from codebehind

    @mark, OK but why isn't <asp:TextBox ID="InputMember" TextMode="SingleLine" Columns="15" runat="server" CausesValidation="true" AutoCompleteType="Email" AutoPostBack="true" ToolTip="Type your Emailaddress here"></asp:TextBox> showing? it also has a runat="server"
  4. AntonioVino

    list all html/Page objects from codebehind

    @mark, Thanks for the speedy answer. Your remark that they were only servercontrols was one of my first thoughts too. But inspecting the output I found also normal html controls in the list but not all. Example Output: | | | | |MainForm | | |MainTable | | | |TopRow | | | | |TopLeft | | | | |...
  5. AntonioVino

    list all html/Page objects from codebehind

    Anyone an idea how to list ALL the html or pageobjects from codebehind. i want to find controls with a tooptip. I've got a recursive loop going through me.controls but that just does not get all controls Public adss As String = "| | | | | | | | | " Public adder As Integer = 0 Public sb As...

Part and Inventory Search

Back
Top