N
nick
Hi,
I wondering if it is possible in asp.net to somehow execute a string
of code as if it were a page on the server. That is to say, if I
executed the following code which resided in an aspx page
<html>
<body>
<% Response.Write("Hi.") %>
</body>
</html>
the output would be
<html>
<body>
Hi
</body>
</html>
Is there some way I could execute the asp.net from above without it
being in an actual page? Can I send some server method a string and
get the output?
Thanks for any help,
Nick
I wondering if it is possible in asp.net to somehow execute a string
of code as if it were a page on the server. That is to say, if I
executed the following code which resided in an aspx page
<html>
<body>
<% Response.Write("Hi.") %>
</body>
</html>
the output would be
<html>
<body>
Hi
</body>
</html>
Is there some way I could execute the asp.net from above without it
being in an actual page? Can I send some server method a string and
get the output?
Thanks for any help,
Nick