Result: <%call vbproc(3,4)%>
[Try it Yourself Β»]( By placing the <%@ language="_language_" %> line above the tag, you can use another scripting language to write sub procedures or functions: ## Example <%@ language="javascript" %> <% function jsproc(num1,num2) { Response.Write(num1*num2) } %>Result: <%jsproc(3,4)%>
YouTip