How to include a .vbs script file into a .xhtml file?
How do I include a .vbs file开发者_运维百科 into a .xhtml file?
You can use the <script>
tag to include the VBS in your page like this:
<script type="text/vbscript">
// your VBS code
</script>
Note that VBS only runs in IE. You need to go for JavaScript to get your script run in all browsers.
精彩评论