Using ASP tags in your aspx code can help you dynamically retrieve data from server and append it to text area. For example < % Dim x As Integer 'Get value for x from database by calling database connection. Here I am directly assigning it.
x = 43
% >
< textarea id="tid" > Printing your dynamic value of : is < % =x % > < /textarea >
Hey guys,
ReplyDeleteI have found solution for it.
Using ASP tags in your aspx code can help you dynamically retrieve data from server and append it to text area. For example
< %
Dim x As Integer
'Get value for x from database by calling database connection. Here I am directly assigning it.
x = 43
% >
< textarea id="tid" >
Printing your dynamic value of : is < % =x % >
< /textarea >
Thats it!!
hope it helps others.
Bye