Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBScript and dynamic web forms.

Status
Not open for further replies.

qwert231

Programmer
Sep 4, 2001
756
US
Just wanted to see if I could use VBScript to influence fields in a web form as you can with Javascript. Can't find any info on the Object Model used for this. Any help?

I want to have something like this (Javascript):
document.seniorForm.negCount.value = intVar + 1;

in VBScript. Ultimatly I want to use VBScripts select case control structure.
 
The object model is a reflection of the script host (in this case the browser), not the language. Well, have you tried this?


Or maybe you want general VBScript information?


Syntax-wise, there isn't a lot of difference between VBScript and Javascript for simple assignment of property values. And the browser only has one object model.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top