Skip to content

Instantly share code, notes, and snippets.

@JavaScript-Packer
Created July 11, 2015 23:45
Show Gist options
  • Save JavaScript-Packer/c015c1fd171cad84d82b to your computer and use it in GitHub Desktop.
Save JavaScript-Packer/c015c1fd171cad84d82b to your computer and use it in GitHub Desktop.
Simple example of Eval in ASP Classic
<%@ LANGUAGE="VBSCRIPT" %>
<%
function myFunction()
response.write("Hello world")
end function
eval("myFunction()")
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment