I have a few questions here:
1) in the form, does the name of the button have to have the ()'s or only when its in the vb script?
2) do i need the <form> tags? with the <input> tags can i just get rid of them and use the input tags instead?
3) and i dont understand how to make the vb code look at the html values that the user inputs and this is making me real frustrated, so if anyone can please help me, that would be great.
<html>
<!-- user inputs a value,and the box returns the same value that the user inputs -->
<head>
<script language="vbs">
sub bvalue_onclick()
end sub
</script>
</head>
<body bgcolor="fafad2">
<!-- form -->
<form name="value">
Input any value: <input type="text" name="ivalue">
<input type="button" name="bvalue" value="click me">
</form>
<!-- end of form -->
</body>
</html>
1) in the form, does the name of the button have to have the ()'s or only when its in the vb script?
2) do i need the <form> tags? with the <input> tags can i just get rid of them and use the input tags instead?
3) and i dont understand how to make the vb code look at the html values that the user inputs and this is making me real frustrated, so if anyone can please help me, that would be great.
<html>
<!-- user inputs a value,and the box returns the same value that the user inputs -->
<head>
<script language="vbs">
sub bvalue_onclick()
end sub
</script>
</head>
<body bgcolor="fafad2">
<!-- form -->
<form name="value">
Input any value: <input type="text" name="ivalue">
<input type="button" name="bvalue" value="click me">
</form>
<!-- end of form -->
</body>
</html>
Comment