Accessing VBScript in C#

liunx

Guest
Hi

I have received a script in VBscript. I have to implement some of the functions of the script into my C# solution. How do I access these functions?
I placed :
<script language=vbscript src=http://www.webdeveloper.com/forum/archive/index.php/3270.js></script>
in my aspx page.
But how do I access the functions in my CS file?

thx a lotI know i can handle it by doing
btnProdCode.Attributes["onclick"] = "Javascript:...."

But I already have some code generated at the onClick method, so I don't think I can do this.

Anyone a solution? I really don't knwo what to do!!!!

thx a lot
 
Back
Top