|
-
Sep 8th, 2004, 03:31 PM
#1
JavaScript Test2
Code:
javascript:Go()
<input type=button onclick="javascript:Go()">
Last edited by Danial; Sep 8th, 2004 at 03:36 PM.
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
-
Sep 8th, 2004, 03:34 PM
#2
Re: JavaScript Test2
Originally posted by Danial
javascript:Go()
<input type=button onclick="javascript:Go()">
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
-
Sep 8th, 2004, 03:35 PM
#3
Code:
<HEAD>
<title>Untitled Document</title>
<script>
function Go(id)
{
document.Page1.incnum.value=id;
document.Page1.submit();
}
</script>
</HEAD>
<HTML>
<body>
<form name=Page1 method="post" action="Page2.asp">
<input type=hidden name="incnum">
<input type = "Button" value="Mark" onclick="javascript:Go('Mark')"><br><br>
<input type = "Button" value="Peter" onclick="javascript:Go('Peter')"><br><br>
<input type = "Button" value="Harry" onclick="javascript:Go('Harry')"><br><br>
</form>
</BODY>
</HTML>
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
-
Sep 8th, 2004, 03:43 PM
#4
Code:
<onlclick="javascript:Go()">
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
-
Sep 8th, 2004, 03:55 PM
#5
VB Code:
<onlclick="javascript:Go()">
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|