errm... this really isn't the right place to be asking this question - this
is a PHP list.
but - if you're talking about using JScript and VBScript in the same ASP
page, you can do it by using this:
<%
' VBScript code goes here
Response.Write DoSomething("To Me")
%>
<script language="JavaScript" runat="Server">
function DoSomething(str){
return str;
}
</script>
I think that's how it goes anyway....
Matt
"Mike" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> How would I implement Javascript into a vB code?
>
>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php