Ask a Question related to ASP.NET General, Design and Development.
-
John Livermore #1
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
-
RegisterClientScriptBlock with rendered control?
Hi, Are there any issues using ClientScriptManager.RegisterClientScriptBlock in a rendered control? I'm calling this function within the... -
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... -
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... -
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... -
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. ... -
Teemu Keiski #2
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



Reply With Quote

