Hi,
I have an html file with a vbscript function.
I have a form in which i send the value to my vbs function.
In the below form, I'm passing 1 parameter and it does work:
function Runtest(iteration)
...
....
End function
<FORM name ="Input">
Please enter your iteration: <INPUT name=iteration><BR>
INPUT onclick="RunTest iteration.value" type=submit value=LaunchQTP name=RunTest>
</FORM>
- RunTest is the name of the function
- iteration is the name of parameter
Now I want to have another input field and want to pass more than 1 parameter to my vbs function- Any ideas how to do that?
thanks in advance,
Kev
I have an html file with a vbscript function.
I have a form in which i send the value to my vbs function.
In the below form, I'm passing 1 parameter and it does work:
function Runtest(iteration)
...
....
End function
<FORM name ="Input">
Please enter your iteration: <INPUT name=iteration><BR>
INPUT onclick="RunTest iteration.value" type=submit value=LaunchQTP name=RunTest>
</FORM>
- RunTest is the name of the function
- iteration is the name of parameter
Now I want to have another input field and want to pass more than 1 parameter to my vbs function- Any ideas how to do that?
thanks in advance,
Kev