473,491 Members | 2,179 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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
follows:

Public Shared Sub MyFunction(ByVal txtbox As TextBox)
'other code
txtbox.Page.RegisterClientScriptBlock("mykey","mys cript")
'other code
End Sub

When I use this external function in my *.aspx.vb files, it does what I want
and expect. However, when I try to use the RegisterClientScriptBlock in my
*.aspx.vb files, it is not included in the list of methods, properties, etc.
when I type 'Page.' Why is Visual Basic not listing this method with the
others while I am writing my code? The *.aspx.vb file inherits
System.Web.UI.Page just like all the *.aspx.vb files. Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/
Jun 10 '06 #1
9 1359
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Os**************@TK2MSFTNGP04.phx.gbl...
When I use this external function in my *.aspx.vb files, it does what I
want and expect. However, when I try to use the RegisterClientScriptBlock
in my *.aspx.vb files, it is not included in the list of methods,
properties, etc. when I type 'Page.'


Is it available when you type 'Me.'?
Jun 10 '06 #2
You need a reference to the actual Page object for the page that is
created as a response to the request.

In the example you show, that is accomplished by the fact that the
control that you are passing to the method contains a reference to the
page that it has been added to.

Inheriting the Page class would give you access to the
RegisterClientScriptBlock method, but that doesn't help you a bit. You
need a reference to the page that is being created, not just any Page
object.

Nathan Sokalski wrote:
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
follows:

Public Shared Sub MyFunction(ByVal txtbox As TextBox)
'other code
txtbox.Page.RegisterClientScriptBlock("mykey","mys cript")
'other code
End Sub

When I use this external function in my *.aspx.vb files, it does what I want
and expect. However, when I try to use the RegisterClientScriptBlock in my
*.aspx.vb files, it is not included in the list of methods, properties, etc.
when I type 'Page.' Why is Visual Basic not listing this method with the
others while I am writing my code? The *.aspx.vb file inherits
System.Web.UI.Page just like all the *.aspx.vb files. Thanks.

Jun 10 '06 #3
No, it is not.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:e4**************@TK2MSFTNGP03.phx.gbl...
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Os**************@TK2MSFTNGP04.phx.gbl...
When I use this external function in my *.aspx.vb files, it does what I
want and expect. However, when I try to use the RegisterClientScriptBlock
in my *.aspx.vb files, it is not included in the list of methods,
properties, etc. when I type 'Page.'


Is it available when you type 'Me.'?

Jun 11 '06 #4
I realize that I need access to the Page object that is being created, but
shouldn't the keyword Me do that, as Mark Rae mentioned in one of the other
responses?
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Göran Andersson" <gu***@guffa.com> wrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
You need a reference to the actual Page object for the page that is
created as a response to the request.

In the example you show, that is accomplished by the fact that the control
that you are passing to the method contains a reference to the page that
it has been added to.

Inheriting the Page class would give you access to the
RegisterClientScriptBlock method, but that doesn't help you a bit. You
need a reference to the page that is being created, not just any Page
object.

Nathan Sokalski wrote:
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
follows:

Public Shared Sub MyFunction(ByVal txtbox As TextBox)
'other code
txtbox.Page.RegisterClientScriptBlock("mykey","mys cript")
'other code
End Sub

When I use this external function in my *.aspx.vb files, it does what I
want and expect. However, when I try to use the RegisterClientScriptBlock
in my *.aspx.vb files, it is not included in the list of methods,
properties, etc. when I type 'Page.' Why is Visual Basic not listing this
method with the others while I am writing my code? The *.aspx.vb file
inherits System.Web.UI.Page just like all the *.aspx.vb files. Thanks.

Jun 11 '06 #5
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Ok**************@TK2MSFTNGP02.phx.gbl...
No, it is not.


Hmm - that's a little curious.

Indulge me - create a new web form with separate code file and see if it
works there...
Jun 11 '06 #6
I have done that. I always use a separate code-behind file (each page has a
*.aspx and *.aspx.vb file). I tried creating a new webform, and it did not
act any differently. Is it possible that there is anything in the Web.config
file or somewhere else that could be preventing me from using
RegisterClientScriptBlock? Thanks.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:eN**************@TK2MSFTNGP04.phx.gbl...
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Ok**************@TK2MSFTNGP02.phx.gbl...
No, it is not.


Hmm - that's a little curious.

Indulge me - create a new web form with separate code file and see if it
works there...

Jun 12 '06 #7
in VS, check

Tools->Options->Text Editor->Basic->General

and check that "Hide advanced members" is unchecked. If it is checked, VS
will hide some methods from you.
--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Ok**************@TK2MSFTNGP02.phx.gbl...
No, it is not.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:e4**************@TK2MSFTNGP03.phx.gbl...
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Os**************@TK2MSFTNGP04.phx.gbl...
When I use this external function in my *.aspx.vb files, it does what I
want and expect. However, when I try to use the
RegisterClientScriptBlock in my *.aspx.vb files, it is not included in
the list of methods, properties, etc. when I type 'Page.'


Is it available when you type 'Me.'?


Jun 12 '06 #8
THANK YOU! It might have taken me who knows how long to find that, and it is
definitely an important method in some cases. Thanks again!
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Teemu Keiski" <jo****@aspalliance.com> wrote in message
news:uw**************@TK2MSFTNGP03.phx.gbl...
in VS, check

Tools->Options->Text Editor->Basic->General

and check that "Hide advanced members" is unchecked. If it is checked, VS
will hide some methods from you.
--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Ok**************@TK2MSFTNGP02.phx.gbl...
No, it is not.
--
Nathan Sokalski
nj********@hotmail.com
http://www.nathansokalski.com/

"Mark Rae" <ma**@markN-O-S-P-A-M.co.uk> wrote in message
news:e4**************@TK2MSFTNGP03.phx.gbl...
"Nathan Sokalski" <nj********@hotmail.com> wrote in message
news:Os**************@TK2MSFTNGP04.phx.gbl...

When I use this external function in my *.aspx.vb files, it does what I
want and expect. However, when I try to use the
RegisterClientScriptBlock in my *.aspx.vb files, it is not included in
the list of methods, properties, etc. when I type 'Page.'

Is it available when you type 'Me.'?



Jun 12 '06 #9
Only if the code is inside the page class. If the code is in some other
class, the Me keyword references the instance of that class.

Nathan Sokalski wrote:
I realize that I need access to the Page object that is being created, but
shouldn't the keyword Me do that, as Mark Rae mentioned in one of the other
responses?

Jun 12 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
8493
by: Mike P | last post by:
Is there a difference between Page.RegisterClientScriptBlock and Page.RegisterStartupScript? I've seen them both in code examples and they both seem to be doing the same thing. Any help would...
10
2451
by: MS News | last post by:
Hello, Where can I find RegisterClientScriptBlock() Page class does not have it. Do I have to Import or add some special reference?? what about RegisterScript which I can see but can not...
2
1976
by: Earl Teigrob | last post by:
I have a Web Custom Control that builds javascript to write to the page. The DatePickerJs() function builds over 500 lines of javacript code. Even thought my Custom Web Control does not write it to...
3
2591
by: Arun K | last post by:
Hi, I am creating a simple .aspx page to add some fields with validation. I have used different .NET validations like REquiredFieldValidator, RegularExpressionValidator and showed the summary...
0
1221
by: Ken Baltrinic | last post by:
I am authoring a composite server control (inheriting from System.Web.UI.Control) that uses a good chunk of client side javascript. To make this work I need to call RegisterArrayDeclaration and in...
2
4597
by: Andrew | last post by:
Hi, I have written this code, but I have received an error message for the javascript code. This is written in the html of the page. <a href="default.aspx" id="NoAccessAllowed"...
7
2138
by: Nathan Sokalski | last post by:
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 follows: Public Shared Sub MyFunction(ByVal...
2
3871
by: Keithb | last post by:
My application has several check boxes included one labeled "All" and another labeled "None." How can I incorporate javascript that will detect that the "All" or "None" checkbox was changed and...
1
1512
by: ruca | last post by:
Hi, I have a button that when clicked must print the current page after doing something in a certain function. For that I have this code: ...
0
7115
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
6978
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7154
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7190
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
5451
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4578
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3076
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1392
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
633
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.