control equivalent to Page.RegisterClientScriptBlock?

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default control equivalent to Page.RegisterClientScriptBlock?

    I have a user control that can be created from a variety of other user
    controls. It is the same no matter where it is created from, and I
    only want one instance of it on the page. Is there a technique
    similar to Page.RegisterClientScriptBlock that I can use to ensure
    only one of these controls gets emitted even though several of them
    were created for a page?

    Thanks,
    John
    John Livermore Guest

  2. Similar Questions and Discussions

    1. RegisterClientScriptBlock with rendered control?
      Hi, Are there any issues using ClientScriptManager.RegisterClientScriptBlock in a rendered control? I'm calling this function within the...
    2. Where is Page.RegisterClientScriptBlock Available?
      I have used the RegisterClientScriptBlock method in external functions of mine (ones that are saved in a separate *.vb file), where I use them as...
    3. What is the Equivalent of the CurrentRowIndex Property for a DataGrid Web Control?
      What is the equivalent of CurrentRowIndex for the DataGrid control in ASP.NET? I am trying to convert the following windows app method, to use in...
    4. RegisterClientScriptBlock does not work from a server control
      For some reason I cannot get RegisterClientScriptBlock to render a script reference on the page from a server control. Yes, I have not placed the...
    5. Is there an Equivalent control in .NET for Datawindow control Of PB
      Is there any equivalent control in .NET for the Power builder DataWindow control? I am explaining the Datawindow architecture to some extent. ...
  3. #2

    Default Re: control equivalent to Page.RegisterClientScriptBlock?

    Isn't that such if you use Page.RegisterClientScriptBlock? You could use
    Page.IsClientScriptBlockRegistered to check if the corresponding script has
    already been outputted.

    --
    Teemu Keiski
    MCP, Designer/Developer
    Mansoft tietotekniikka Oy
    [url]http://www.mansoft.fi[/url]

    AspInsiders Member, [url]www.aspinsiders.com[/url]
    ASP.NET Forums Moderator, [url]www.asp.net[/url]
    AspAlliance Columnist, [url]www.aspalliance.com[/url]

    "John Livermore" <john.livermore@nospm-inginix.com> wrote in message
    news:vt82ivoi6brnnlf4j9oomv8092l9r7j4qg@4ax.com...
    > I have a user control that can be created from a variety of other user
    > controls. It is the same no matter where it is created from, and I
    > only want one instance of it on the page. Is there a technique
    > similar to Page.RegisterClientScriptBlock that I can use to ensure
    > only one of these controls gets emitted even though several of them
    > were created for a page?
    >
    > Thanks,
    > John

    Teemu Keiski Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139