Calling vbscript function(passed value string)
Hi,
I have written a vbscript function, say
Sub HelloWorld(x)
msgbox x
End Sub
I am calling the function from my c# code behind page,where the execution of the function is required.When I am passing the integer value say 10, the method is executing and msgbox is displaying value as 10, but when I am passing string value say "John",Message box is not displaying anything, means method is executing but only taking int. values, why this is so, I am not able to figure out the problem.
Please help me out!
Thanks in advance,
Manish
|