Run VBscript code that is sent through form POST

nirvana43

New Member
I'd like to have a classic ASP page that works similar to a jsfiddle except for VBscript this time. In order words, I need to display the output of vbscript code that is passed from one form to a page using POST.Obviously, \[code\]response.write(request.form())\[/code\] doesn't work and I don't even know how if it's possible. I can see how a script could write the form input into a separate .asp page (using \[code\]filesystemobject\[/code\] and \[code\]writeline\[/code\]) which is then loaded, but is there a more elegant way as to not have a temporary page for each request?
 
Back
Top