|
-
Oct 25th, 2003, 06:14 AM
#1
Thread Starter
Addicted Member
call another function from javascript
How can I call a Subroutine written in vb script from a Javascript Function.
EG,
<script language=javascript>
function ShowID(id)
{
alert ("ID is \n " + unescape(id));
runME(id);
}
</script>
Sub runME(sValue As String)
Response.Write(sValue)
End Sub
The above example does not work ?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|