accessing one HTML/Control object from another

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • darrel

    accessing one HTML/Control object from another

    I've asked this question before, but I think I need to elaborate a bit.

    I have a page formatted like this:

    page.aspx
    <title> | titleControl.as cx
    otherControl.as cx

    The page has either a TITLE html tag OR it uses a control to dynamically
    write out the TITLE tag.

    I'd like to be able to modify the TITLE tage (regardless of how it's
    rendred) via the 'otherControl' upon a postback. Can this be done?

    It was suggested that I wrap the title in a label. Can a label be
    registered/shared by/between multiple controls?

    -Darrel


  • Freddy

    #2
    Re: accessing one HTML/Control object from another

    Try to use a title HtmlControl


    "darrel" <notreal@hotmai l.com> wrote in message
    news:uX8llVzpEH A.2948@TK2MSFTN GP11.phx.gbl...[color=blue]
    > I've asked this question before, but I think I need to elaborate a bit.
    >
    > I have a page formatted like this:
    >
    > page.aspx
    > <title> | titleControl.as cx
    > otherControl.as cx
    >
    > The page has either a TITLE html tag OR it uses a control to dynamically
    > write out the TITLE tag.
    >
    > I'd like to be able to modify the TITLE tage (regardless of how it's
    > rendred) via the 'otherControl' upon a postback. Can this be done?
    >
    > It was suggested that I wrap the title in a label. Can a label be
    > registered/shared by/between multiple controls?
    >
    > -Darrel
    >
    >[/color]


    Comment

    Working...