hi
i have a page that generates asp code as text.
this all works well, but i need the same page to take the generated code and use it as asp again. is this even possible?
<% VARdate = "date()"
' now to use the VARdate
response.write(VARdate) %>
this is just an example. the code im working with checks to see what tables are available from a mysql database, runs an explain on them (to see what columns there are) then it runs a recordset outputing the data of those columns.
im trying to create a way of backing up a database with JUST asp.
if i could only get asp to read code thats in "text" as asp code, im sure it would work. cause if i take the generated code on IE. place it in an asp document it works fine.
PLEASE SAY ITS POSSIBLE and how to go about it