Created
July 11, 2015 23:45
-
-
Save JavaScript-Packer/c015c1fd171cad84d82b to your computer and use it in GitHub Desktop.
Simple example of Eval in ASP Classic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ 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