473,395 Members | 1,393 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Run JavaScript before Form Submits

Hi
How can I run a java script function before a form is submited back to the
server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.
Nov 18 '05 #1
14 1778
Instead of using a submit button on your form, use a regular HTML button
that has an onClick event handler on it that calls a function.

In that function, do whatever you like and when you are done invoke
formName.submit()
"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to the server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.

Nov 18 '05 #2
Ok then,
But what Serverside code is required to make sure the submit button was
pressed and not a clear or browser refresh button.

"Scott M." <s-***@badspamsnet.net> wrote in message
news:eN**************@TK2MSFTNGP11.phx.gbl...
Instead of using a submit button on your form, use a regular HTML button
that has an onClick event handler on it that calls a function.

In that function, do whatever you like and when you are done invoke
formName.submit()

Nov 18 '05 #3
call the javascript function and then return true.
the form will be submitted as normal.
eg
myButton.Attributes.add("onclick","doThisFirst();" );

on the page

<script>
function doThisFirst() {
alert('hello');
return true;
}
</script>
"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to the server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.

Nov 18 '05 #4
Yep, this is why I am having such hard time seeing the
benefits of ASP.NET. So far I feel like they turned ASP
development with .NET into a beefed up version of
FrontPage. Where as on the windows side of things I think
it is a huge improvement.
-----Original Message-----
Instead of using a submit button on your form, use a regular HTML buttonthat has an onClick event handler on it that calls a function.
In that function, do whatever you like and when you are done invokeformName.submit()
"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in messagenews:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to
the
server.
What I wish to do is have a upload form that when a

user clicks the submit button a javascript function opens a second window after this the buttons onclick event should be run.

Is any of this possible.

.

Nov 18 '05 #5
Oh, I think you haven't worked with it long then. It is a completely new
paradigm. Much more powerful. Much more scaleable. Not even close to
anything that FP can do.

It just so happens that your question wasn't really a .NET question. It was
a client-side JavaScript question.
"dingo" <an*******@discussions.microsoft.com> wrote in message
news:03****************************@phx.gbl...
Yep, this is why I am having such hard time seeing the
benefits of ASP.NET. So far I feel like they turned ASP
development with .NET into a beefed up version of
FrontPage. Where as on the windows side of things I think
it is a huge improvement.
-----Original Message-----
Instead of using a submit button on your form, use a

regular HTML button
that has an onClick event handler on it that calls a

function.

In that function, do whatever you like and when you are

done invoke
formName.submit()
"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in

message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to
the
server.
What I wish to do is have a upload form that when a

user clicks the submit button a javascript function opens a second window after this the buttons onclick event should be run.

Is any of this possible.

.

Nov 18 '05 #6
In the page_load event...

If IsPostBack() Then
'Second or subsequent trip to the server

Else
'Fist time data was submitted

End If

"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:eW**************@TK2MSFTNGP09.phx.gbl...
Ok then,
But what Serverside code is required to make sure the submit button was
pressed and not a clear or browser refresh button.

"Scott M." <s-***@badspamsnet.net> wrote in message
news:eN**************@TK2MSFTNGP11.phx.gbl...
Instead of using a submit button on your form, use a regular HTML button
that has an onClick event handler on it that calls a function.

In that function, do whatever you like and when you are done invoke
formName.submit()


Nov 18 '05 #7
> Instead of using a submit button on your form, use a regular HTML button
that has an onClick event handler on it that calls a function.

At the HTML level form objs have a OnSubmit() and OnReset() events
handlers...

With...

1) In you script tag...
function verifyForm(IncomingForm)
{
if(FORMISVALID)
return true;
else
return false;
}

2) In form tag(1 or more forms supported cause of IncomingForm param above
just send verifyForm(...) this)...
<form ... onSubmit="return verifyForm(this);">...</form>

Now you just need to add you form processing code and your ready to go...
Nov 18 '05 #8
"Scott M." <s-***@badspamsnet.net> wrote in message
news:eD*************@TK2MSFTNGP11.phx.gbl...
In the page_load event...

If IsPostBack() Then
'Second or subsequent trip to the server

Else
'Fist time data was submitted

End If


OK but this doesn't stop the submit code from running if you press a
different button or refresh the page.
Nov 18 '05 #9
SSW
Use Javscript below
<script language="javascript">
function ConfirmOnSummit()
{
if (typeof(Page_ClientValidate) == 'function')
{
if (Page_ClientValidate())
{
if(confirm("What Ever u what to confirm or run a Java Script
code?")==1)
return true;
else
return false;
}
}
}
</script>
Create tage in aspx page.
<span onclick="javascript: return ConfirmOnSummit();"><asp:button
id="btnSubmit" runat="server" CausesValidation="False"
Text="Submit"></asp:button></span>

This Will surely work. It take all the advantage of Asp.Net

Thanks,

sswalia
MCAD, MCAD, OCA

"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to the server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.

Nov 18 '05 #10
SSW
Sorry Please igonre above solution. It's not for you.
"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to the server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.

Nov 18 '05 #11
try
Page.RegisterOnSubmitStatement

"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uI*************@tk2msftngp13.phx.gbl...
Hi
How can I run a java script function before a form is submited back to the server.
What I wish to do is have a upload form that when a user clicks the submit
button a javascript function opens a second window after this the buttons
onclick event should be run.

Is any of this possible.

Nov 18 '05 #12
OK then, but how do I use it, A sample would be nice.

"Joe Gass" <jo*@dontspamme.com> wrote in message
news:Oz**************@tk2msftngp13.phx.gbl...
try
Page.RegisterOnSubmitStatement

Nov 18 '05 #13

"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uB**************@TK2MSFTNGP10.phx.gbl...
"Scott M." <s-***@badspamsnet.net> wrote in message
news:eD*************@TK2MSFTNGP11.phx.gbl...
In the page_load event...

If IsPostBack() Then
'Second or subsequent trip to the server

Else
'Fist time data was submitted

End If


OK but this doesn't stop the submit code from running if you press a
different button or refresh the page.


If you refresh the page, you are not re-submitting the data, you are
re-requesting the page with whatever data was posted previously.

If you want to prevent ASP.NET server-side code from running you could use
only HTML controls and the client-side JavaScript I described in my earlier
post.
Nov 18 '05 #14
http://msdn.microsoft.com/library/en...ementTopic.asp

"Kenneth Keeley" <ke*******@hotmail.com.nowhere> wrote in message
news:uk*************@TK2MSFTNGP10.phx.gbl...
OK then, but how do I use it, A sample would be nice.

"Joe Gass" <jo*@dontspamme.com> wrote in message
news:Oz**************@tk2msftngp13.phx.gbl...
try
Page.RegisterOnSubmitStatement


Nov 18 '05 #15

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

Similar topics

7
by: AnnMarie | last post by:
My JavaScript Form Validation doesn't work at all in Netscape, but it works fine in IE. I made some of the suggested changes which enabled it to work in IE. I couldn't make all the changes...
72
by: Stephen Poley | last post by:
I have quite often (as have probably many of you) come across HTML forms with irritating bits of Javascript attached. The last straw on this particular camel's back was a large form I was asked to...
7
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: {////<<head> <title>IIBO Submit Page</title>...
6
by: x muzuo | last post by:
Hi guys, I have got a prob of javascript form validation which just doesnt work with my ASP code. Can any one help me out please. Here is the code: ...
8
by: ryan | last post by:
that will make sure all fields are entered. make sure age is between 3- 99 and make sure the email is valid I had a decent search on google, nothing really comes up that is complete. I am...
8
by: nektir | last post by:
I have an external js file to validate a form and it works in IE and Opera, but not Mozilla Firefox. In Mozilla Firefox, the javascript console sasys "SearchForm" is not defined in the second...
2
by: mylo1968 | last post by:
Hello Experts, in the following link there is fine tool for javascript client-side form validation, as some of you I guess/hope know: ...
14
Plater
by: Plater | last post by:
I'm going to stab myself in the face. I have a page with a single form. Regular old html. There are a few checkboxes and textboxes and and two submit buttons (I hope that's not the issue...) The...
6
by: 0utlawza | last post by:
Hi Guys It seems i posted this in the incorrect topic, so i am reposting here. Please excuse the Newbie question. I am not really a programmer so excuse me if i dont clarify my point...
3
by: PrabodhanP | last post by:
I hv following javascript form validation code works in IE but not in Mozilla-Firefox ...please suggest <script type="text/javascript"> function IsNumeric(strString) // check for valid...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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
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
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.