I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and script
(2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock also
includes a parameter called 'type' which is of Type. This sounds like it is
supposed to specify whether the script is JavaScript, VBScript, JScript,
ECMAScript, etc., but I what am I supposed to enter here (I have not heard
of a value of Type that would specify this)? (I always use JavaScript for my
client-side scripts) Thanks.
--
Nathan Sokalski
njsokalski@hotmail.com
http://www.nathansokalski.com/

Re: ClientScript.RegisterClientScriptBlock in ASP.NET 2.0 by Ken

Ken
Sun Jul 02 20:29:34 CDT 2006

Hi Nathan,

Try it like this:

ClientScript.RegisterStartupScript(Me.GetType, "Startup",
scriptString)


Ken
Microsoft MVP [ASP.NET]

"Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
news:OITliwjnGHA.2264@TK2MSFTNGP04.phx.gbl...
>I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
>ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and script
>(2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock also
>includes a parameter called 'type' which is of Type. This sounds like it is
>supposed to specify whether the script is JavaScript, VBScript, JScript,
>ECMAScript, etc., but I what am I supposed to enter here (I have not heard
>of a value of Type that would specify this)? (I always use JavaScript for
>my client-side scripts) Thanks.
> --
> Nathan Sokalski
> njsokalski@hotmail.com
> http://www.nathansokalski.com/
>



Re: ClientScript.RegisterClientScriptBlock in ASP.NET 2.0 by daniel

daniel
Sun Jul 02 22:53:22 CDT 2006

Hi Nathan

RegisterClientScriptBlock doesn't know about client side scripting, the
parameter type is the object 'type', You usually get this with GetType()
method.

See ya
daniel #

"Nathan Sokalski" <njsokalski@hotmail.com> wrote in message
news:OITliwjnGHA.2264@TK2MSFTNGP04.phx.gbl...
>I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
>ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and script
>(2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock also
>includes a parameter called 'type' which is of Type. This sounds like it is
>supposed to specify whether the script is JavaScript, VBScript, JScript,
>ECMAScript, etc., but I what am I supposed to enter here (I have not heard
>of a value of Type that would specify this)? (I always use JavaScript for
>my client-side scripts) Thanks.
> --
> Nathan Sokalski
> njsokalski@hotmail.com
> http://www.nathansokalski.com/
>



RE: ClientScript.RegisterClientScriptBlock in ASP.NET 2.0 by WilliamSullivan

WilliamSullivan
Mon Jul 03 07:31:01 CDT 2006

The C# flavor would be:

ClientScript.RegisterStartupScript(typeof(this), "Startup",
scriptString)

I was hoping an MVP would say why they decided to associate scripts with the
pages that contain them; I'm assuming that the same script manager object is
shared throughout the web site.

"Nathan Sokalski" wrote:

> I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
> ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and script
> (2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock also
> includes a parameter called 'type' which is of Type. This sounds like it is
> supposed to specify whether the script is JavaScript, VBScript, JScript,
> ECMAScript, etc., but I what am I supposed to enter here (I have not heard
> of a value of Type that would specify this)? (I always use JavaScript for my
> client-side scripts) Thanks.
> --
> Nathan Sokalski
> njsokalski@hotmail.com
> http://www.nathansokalski.com/
>
>
>

Re: ClientScript.RegisterClientScriptBlock in ASP.NET 2.0 by Alessandro

Alessandro
Mon Jul 03 09:22:42 CDT 2006

William, its just to give you a much better option to identifying script
files. Basically if you just provided a key string, this will surely make it
unique but if the key was associated to a particular control, it wont clash
with other controls that might be using the same key to identify their
scripts, since now my key is prefixed to my control.

Specially if you are a control author, this is useful since I dont know what
kind of key the end user might want to use to uniquely identify his other
script files. I dont want to assume what it might be either, so if i can
prefix this with the type of my control i have a better chance of making the
key unique and avoid any un-necessary clashes or limiting the end user. I
guess you can consider specfying a type as providing a namespace.

This is also hinted in the documentation :
"A client script is uniquely identified by its key and its type. Scripts
with the same key and type are considered duplicates"


Regards,
Alessandro Zifiglio
http://www.AsyncUI.net
"William Sullivan" <WilliamSullivan@discussions.microsoft.com> ha scritto
nel messaggio news:FA801D7B-7DAF-4AD4-BEAC-DA62A2D23654@microsoft.com...
> The C# flavor would be:
>
> ClientScript.RegisterStartupScript(typeof(this), "Startup",
> scriptString)
>
> I was hoping an MVP would say why they decided to associate scripts with
> the
> pages that contain them; I'm assuming that the same script manager object
> is
> shared throughout the web site.
>
> "Nathan Sokalski" wrote:
>
>> I am working on converting my code from ASP.NET 1.1 to ASP.NET 2.0. In
>> ASP.NET 1.1 the RegisterClientScriptBlock method was just a key and
>> script
>> (2 Strings), but in ASP.NET the ClientScript.RegisterClientScriptBlock
>> also
>> includes a parameter called 'type' which is of Type. This sounds like it
>> is
>> supposed to specify whether the script is JavaScript, VBScript, JScript,
>> ECMAScript, etc., but I what am I supposed to enter here (I have not
>> heard
>> of a value of Type that would specify this)? (I always use JavaScript for
>> my
>> client-side scripts) Thanks.
>> --
>> Nathan Sokalski
>> njsokalski@hotmail.com
>> http://www.nathansokalski.com/
>>
>>
>>