with respect to my earlier query
say,
I have a string
a = "<% response.write('UHMNC') %>"
now i want to print it to get the state ment
My Id is UHMNC '''''expected output
hence in code i use
response.write("My Id is " & a) '''''code used
but the out put i get is
My Id is '''''output
and the html source shows
My Id is <% response.write('UHMNC') %> '''''html source

I cannot understand why
<% response.write('UHMNC') %>
is not executed to give me
UHMNC.


Any One Could Please Help.