I have a asp.net web page that im creating. and have a vbscript as the client side script. and the application will be accessed only from IE so thats not an issue. I get a weird error when i click on a button which is supposed to execute the client side vbscript instead it throws me a javascript runtime error?.
Is there a way to configure this ?.
By the way im moving from a HTA to asp page if someone can direct me as to how to implement this will be appreciated.
This is the html code for the button element
<input type = "button" value = "Display" name = "Run_Button" onClick = "getvalue">
This is the code for the client side vbscript
<script language="vbscript" type="text/vbscript">
Sub getvalue
some text
End sub
Am i missing something? further i added the below line at the start of the html document
<%@language="VBScript"%>