473,761 Members | 1,784 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Injecting code into the <head></head> section

Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an
error and the little "!" icon flashes in the status bar of the browser, then
goes away.
Thanks, as always!

Brian W

Nov 17 '05 #1
10 6858
What reason do you have for wanting to put the script inside the <head>? It
really makes no difference.

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an error and the little "!" icon flashes in the status bar of the browser, then goes away.
Thanks, as always!

Brian W


Nov 17 '05 #2
To debug javascript, open the page in the latest Netscape. Once the page is
fully loaded, type "javascript :" in the address bar to view the debugger.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *****@TK2MSFTNG P10.phx.gbl...
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an
error and the little "!" icon flashes in the status bar of the browser, then
goes away.
Thanks, as always!

Brian W


Nov 17 '05 #3
For javascript debugging, make sure you have your IE settings set to enable
debugging and to display a notification about every error. This is in
Option on the Tools menu on the Advanced tab.

I also don't see a specific reason for the script to be in the HEAD section.
Can you please explain what it is you are trying to do, that you think
requires this?

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an error and the little "!" icon flashes in the status bar of the browser, then goes away.
Thanks, as always!

Brian W


Nov 17 '05 #4
if you look in the controls collection, you see the first/second control is
a literal control which contains the <head></head> (if defined on the page).
you can inject your code there with a little string manipulation.

-- bruce (sqlwork.com)

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *****@TK2MSFTNG P10.phx.gbl...
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an error and the little "!" icon flashes in the status bar of the browser, then goes away.
Thanks, as always!

Brian W


Nov 17 '05 #5
To all those that replied, thanks for taking the time to reply...

I have several reasons for wanting to put the script in the HEAD section.

1) A few years ago, at a big e-company, I tried to put some script in BODY
and was chastised for doing so. When I questioned why I was given some
reason about how some errors were processed. And placing the script within
the HEAD section either hid these errors form the end user (sorry for the
vagueness, they made it clear as mud to me then too;).

Is this not true?

2) It seems to be much cleaner. If the implementation of some JavaScript
functions are in the HEAD section then there is only one place to look.

3) All the examples I seem to find have the SCRIPT blocks in the head
section, so I guess It may at least partially be a case of monkey see,
monkey do.... Seriously, if it doesn't matter, then why is it done this way
in so many places?

If I could get RegisterClientS criptBlock and/or RegisterStartup Script to
work consistently then I probably wouldn't care.
Thanks again
Brian W

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head>
section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on has an error and the little "!" icon flashes in the status bar of the browser, then goes away.
Thanks, as always!

Brian W


Nov 17 '05 #6
A few years ago it might have made a difference. Today it doesn't. What
problems are you having with the .Net methods?

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:OB******** ******@TK2MSFTN GP10.phx.gbl...
To all those that replied, thanks for taking the time to reply...

I have several reasons for wanting to put the script in the HEAD section.

1) A few years ago, at a big e-company, I tried to put some script in BODY and was chastised for doing so. When I questioned why I was given some
reason about how some errors were processed. And placing the script within
the HEAD section either hid these errors form the end user (sorry for the
vagueness, they made it clear as mud to me then too;).

Is this not true?

2) It seems to be much cleaner. If the implementation of some JavaScript
functions are in the HEAD section then there is only one place to look.

3) All the examples I seem to find have the SCRIPT blocks in the head
section, so I guess It may at least partially be a case of monkey see,
monkey do.... Seriously, if it doesn't matter, then why is it done this way in so many places?

If I could get RegisterClientS criptBlock and/or RegisterStartup Script to
work consistently then I probably wouldn't care.
Thanks again
Brian W

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this
page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is
placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head> section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on
has an
error and the little "!" icon flashes in the status bar of the browser,

then
goes away.
Thanks, as always!

Brian W



Nov 17 '05 #7

"Kevin Spencer" <ke***@SPAMMERS SUCKtakempis.co m> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
A few years ago it might have made a difference. Today it doesn't. What
problems are you having with the .Net methods?
Even though, as you say, "A few years ago it might have made a difference".
Aren't those browsers still in use today? And shouldn't one at least try to
support the lowest possible denominator? I know I still see people on some
of the NG's asking questions about Win 95, 98 and their browsers.

As for the problems I have with the 2 methods, I 've been poundin my head
against my desk on that one, and realized the page I was testing doesn't
have a <form> tag. now that I put one in ithey work. but I still have a
problem with that. I may want my code on a page that doesn't have a form
defined. If that's the case then I'm out of luck.

It seems silly to put a FORM on a page that has no need for one.
Brian W



HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:OB******** ******@TK2MSFTN GP10.phx.gbl...
To all those that replied, thanks for taking the time to reply...

I have several reasons for wanting to put the script in the HEAD section.

1) A few years ago, at a big e-company, I tried to put some script in

BODY
and was chastised for doing so. When I questioned why I was given some
reason about how some errors were processed. And placing the script within the HEAD section either hid these errors form the end user (sorry for the vagueness, they made it clear as mud to me then too;).

Is this not true?

2) It seems to be much cleaner. If the implementation of some JavaScript
functions are in the HEAD section then there is only one place to look.

3) All the examples I seem to find have the SCRIPT blocks in the head
section, so I guess It may at least partially be a case of monkey see,
monkey do.... Seriously, if it doesn't matter, then why is it done this

way
in so many places?

If I could get RegisterClientS criptBlock and/or RegisterStartup Script to
work consistently then I probably wouldn't care.
Thanks again
Brian W

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head> section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on

has
an
error and the little "!" icon flashes in the status bar of the

browser, then
goes away.
Thanks, as always!

Brian W




Nov 17 '05 #8
Hi Brian,

You asked if those browsers aren't still in use today. Since there are
nearly 7 Billion people in the world, I would have to say "probably yes, a
few." However, you are writing a web application, not a web site with static
pages. And there aren't any professional developers out there that design
for all POSSIBLE browsers. Most developers target version 4 and above of the
popular browsers. Since browsers are free, there are extremely few people
who don't have a version 4 or above. And those people aren't worth worrying
about. Remember, we're not talking about 5-year-old browsers here. We're
talking about 10-year-old browsers.

In fact, if you are going to worry about JavaScript in the <head> of your
page because of older browsers, how do you plan to accomodate those older
browsers that don't support JavaScript at all?

I hope you see my point.

HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:eX******** ******@TK2MSFTN GP11.phx.gbl...

"Kevin Spencer" <ke***@SPAMMERS SUCKtakempis.co m> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl...
A few years ago it might have made a difference. Today it doesn't. What
problems are you having with the .Net methods?
Even though, as you say, "A few years ago it might have made a

difference". Aren't those browsers still in use today? And shouldn't one at least try to support the lowest possible denominator? I know I still see people on some
of the NG's asking questions about Win 95, 98 and their browsers.

As for the problems I have with the 2 methods, I 've been poundin my head
against my desk on that one, and realized the page I was testing doesn't
have a <form> tag. now that I put one in ithey work. but I still have a
problem with that. I may want my code on a page that doesn't have a form
defined. If that's the case then I'm out of luck.

It seems silly to put a FORM on a page that has no need for one.
Brian W



HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:OB******** ******@TK2MSFTN GP10.phx.gbl...
To all those that replied, thanks for taking the time to reply...

I have several reasons for wanting to put the script in the HEAD section.
1) A few years ago, at a big e-company, I tried to put some script in

BODY
and was chastised for doing so. When I questioned why I was given some
reason about how some errors were processed. And placing the script within the HEAD section either hid these errors form the end user (sorry for the vagueness, they made it clear as mud to me then too;).

Is this not true?

2) It seems to be much cleaner. If the implementation of some JavaScript functions are in the HEAD section then there is only one place to look.
3) All the examples I seem to find have the SCRIPT blocks in the head
section, so I guess It may at least partially be a case of monkey see,
monkey do.... Seriously, if it doesn't matter, then why is it done this
way
in so many places?

If I could get RegisterClientS criptBlock and/or RegisterStartup Script
to work consistently then I probably wouldn't care.
Thanks again
Brian W

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
> Hi All,
>
> I have a web user control that, among other things, provides Print this > page, and Email this page functionality I have this script that is to > execute on the click of the asp:hyperlinks
>
> I have a function in a <SCRIPT> block that I want in the <head></head> > section of the page. Unfortunately, RegisterClientS criptBlock,
> RegisterStartup Script don't always work, and when they do the script is > placed inside the <form> tag (this seems stupid to me).
>
> Is there anyway, from the web user control to insert code into the

<head>
> section of the page using the web user control?
>
>
> -- also --
>
> How does one go about debugging java script? Some code I'm working
on has
an
> error and the little "!" icon flashes in the status bar of the

browser, then
> goes away.
>
>
> Thanks, as always!
>
> Brian W
>
>
>
>
>



Nov 17 '05 #9
Brian: I tend to agree, that inserting script into the page head should be
an option. The following is from a previous thread. I haven't tried it, but
perhaps it will help:

---- Original Message -----
From: "RadekP" <ra***@aldec.co m>
Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet.buil dingcontrols
Sent: Thursday, June 12, 2003 10:34 AM
Subject: Re: Accessing the page head

Chirs

There is certainly a way.

1. Declare the header tag with its "id" and "runat" properties so the page
parser will generate HtmlServerContr ol after compilation for your header -
to be precise : page parser uses control builders
(System.Web.UI. ControlBuilder or inherited) to build parse tree once it has
parsed the content of *.aspx page comprised of control builder instances
that are converted to a code that are dynamically compiled during a first
request. Anyway simple :

<HEAD id="myHead" runat="server"> </HEAD> suffices.

In your code behind you then declare :

protected System.Web.UI.H tmlControls.Htm lContainerContr ol myHead

And you are free to access myHead properties. You are probably going to be
interested in "InnerHtml" property the most.

2. Place your custom control or any web control that does not make sure to
be rendered inside a form (Page.VerifyRen deringInServerF orm)

<HEAD>
<myTag:MyContro l id="myControl" runat="server" ContentKey="C#"
ContentName="CO DE_LANGUAGE"/>
</HEAD>

Hope that Helps

Regards

Radek

"Chris" <ch***@uglyfish .com> wrote in message
news:0d******** *************** *****@phx.gbl.. .
Is there a way to access the page head from the code
behind of an aspx page? I would like to insert a script
block into the page head, and not into the body which is
what the RegisterClientS criptBlock and
RegisterStartup Script seem to do.

It would also be nice to access the page head to insert
the global style sheet reference.
if the developer wants to put script inside the page head,
"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:eX******** ******@TK2MSFTN GP11.phx.gbl...

"Kevin Spencer" <ke***@SPAMMERS SUCKtakempis.co m> wrote in message
news:OS******** ******@tk2msftn gp13.phx.gbl... A few years ago it might have made a difference. Today it doesn't. What
problems are you having with the .Net methods?
Even though, as you say, "A few years ago it might have made a difference".
Aren't those browsers still in use today? And shouldn't one at least try to
support the lowest possible denominator? I know I still see people on some
of the NG's asking questions about Win 95, 98 and their browsers.

As for the problems I have with the 2 methods, I 've been poundin my head
against my desk on that one, and realized the page I was testing doesn't
have a <form> tag. now that I put one in ithey work. but I still have a
problem with that. I may want my code on a page that doesn't have a form
defined. If that's the case then I'm out of luck.

It seems silly to put a FORM on a page that has no need for one.
Brian W



HTH,

Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
http://www.takempis.com
Big things are made up of
lots of Little things.

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:OB******** ******@TK2MSFTN GP10.phx.gbl...
To all those that replied, thanks for taking the time to reply...

I have several reasons for wanting to put the script in the HEAD section.

1) A few years ago, at a big e-company, I tried to put some script in

BODY
and was chastised for doing so. When I questioned why I was given some
reason about how some errors were processed. And placing the script within the HEAD section either hid these errors form the end user (sorry for the vagueness, they made it clear as mud to me then too;).

Is this not true?

2) It seems to be much cleaner. If the implementation of some JavaScript
functions are in the HEAD section then there is only one place to look.

3) All the examples I seem to find have the SCRIPT blocks in the head
section, so I guess It may at least partially be a case of monkey see,
monkey do.... Seriously, if it doesn't matter, then why is it done this

way
in so many places?

If I could get RegisterClientS criptBlock and/or RegisterStartup Script to
work consistently then I probably wouldn't care.
Thanks again
Brian W

"Brian W" <brianw@gold_de ath_2_spam_rush .com> wrote in message
news:ec******** *******@TK2MSFT NGP10.phx.gbl.. .
Hi All,

I have a web user control that, among other things, provides Print this page, and Email this page functionality I have this script that is to
execute on the click of the asp:hyperlinks

I have a function in a <SCRIPT> block that I want in the <head></head>
section of the page. Unfortunately, RegisterClientS criptBlock,
RegisterStartup Script don't always work, and when they do the script is placed inside the <form> tag (this seems stupid to me).

Is there anyway, from the web user control to insert code into the <head> section of the page using the web user control?
-- also --

How does one go about debugging java script? Some code I'm working on

has
an
error and the little "!" icon flashes in the status bar of the

browser, then
goes away.
Thanks, as always!

Brian W






Nov 17 '05 #10

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

Similar topics

7
5556
by: Ignac Vucko | last post by:
Is writing a document *during* page load safe and supported for all 4th and 5th generation browsers? If not, can you show me a specific example/browser where it causes problems? <html> <head> <script>document.writeln("<div id='mydiv'>stuff</div>");</script> </head> <body>blah</body>
6
5469
by: Ken Varn | last post by:
I want to add my own custom <STYLE> section in the <HEAD> section of my ASP.NET page within a custom control. Can someone tell me how I can have my custom control add tags to the <HEAD> section of the page dynamically when the page is rendered? -- ----------------------------------- Ken Varn Senior Software Engineer Diebold Inc.
3
2662
by: jsh02_nova | last post by:
Anybody know how to add a script block to the html <head> section programmatically without using the 'RegisterScriptBlock' functions? -- thx -jsh
3
1408
by: PJ6 | last post by:
I want to render this text into the <HEAD> section of a page (and perhaps mute any existing title declaration, or alter it to be this instead) - <title runat="server" id=HtmlTitle></title> It seems Render only sends items into the <BODY>. Actually, it would be nice if I had control over the entire rendering process, including the whole <HEAD>.
7
12976
by: ericgla | last post by:
I am creating a web app using asp.net 2.0 where all pages are based a single master page. On some of the aspx pages I need to add javascript to the head tag in order to use Google maps. I tried this to access the header: In the master page: <HEAD runat="server"> In the aspx page: Page_Load
5
2501
by: Arne | last post by:
I need literal controls in the <head> section of my page. I need to be able to load dynamic values in the head section. It works fine in ASP.Net 1.1, but Asp.net 2.0 gives a compile error. I need the dynamically assigned <base href='??'> and <META NAME="Description" CONTENT="??"> Is there a work around?
1
4759
by: Frank | last post by:
I would like to create a custom control that generates everything that will be in the <head> </head> section. This would allow me to make changes on all pages withing a site in one location. But can I do so since the control would not be withing a <form> tag in the aspx page? Can I do like so?:
3
1455
by: phpmel | last post by:
Hi guys, I have yet another question. I am working with this html form that uses a template. <head> //is greyed out //some greyed out <style >stuff is next <!-- InstanceEndEditable -->//greyed out </head>//greyed out <body>//greyed out
2
1275
by: Rex | last post by:
I am writing a script that executes a bunch of queries through a form on a website and reads the results. I am only interested in the <titlesection in the <headof each web page. Currently, each page the server returns is about 100kb and contains a bunch of HTML and Javascript, all of which I don't need; I don't want to waste bandwidth or consume too much of the server's resources. I just need the <title> string. Is there any way to...
0
9554
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10136
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9925
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7358
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6640
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 then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5266
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3509
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2788
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.