I need to have a msgbox that says something, combined with text from an input box in HTML
here is what i have..
So if anyone could help me, plese do so<Form Name="Form1">
<input type=Text Name="Text1">
<input type=Button Name=Button1 Value="Click me">
<script language=vbscript>
Sub Button1_OnClick
msgbox "Hi," & Form1.Text1.Value
end sub
</script>
thanks
