When you use the Scripting Object Model (SOM) in Visual InterDev 6, keep in mind that the script library is biased towards JavaScript. Your perfectly valid VBScript may produce strange errors when interpreted by the SOM. For instance, this line of VBScript:
employeeID=Listbox3.getValue
might produce bizarre text in the browser, such as:
<=function _LB_getValue(nIndex) { if (typeof(nIndex) == 'undefined') nIndex = this.selectedIndex; if (!isNaN(parseInt(nIndex)) && nIndex >= 0 && nIndex < this.getCount()) return this._options[nIndex].value; return ''; }
The SOM script library is actually returning its own code instead of the value that you requested. The fix is simple--just add brackets to the VBScript method:
employeeID=Listbox3.getValue()
Whenever your code produces unexpected results from the script library, adding a couple of brackets could be the fastest fix.
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Google Buys API.AI
- IBM Joins R Consortium as a Platinum Member
- How to Turn on TLS Versions Without Affecting Earlier Versions
- Expanded Perforce Consulting Services Help Customers Boost Security, Raise Development Efficiency and Adopt DevOps
- Software Developer Files Age Discrimination Case Against Google























