Hello: we currently do not use asp.
net controls (no web forms). The way we do is:
1 Read HTML file from disk
2 lookup database, parse tags and populate data
finally,
Response.Write(page.ToString());
here there is no possibility of using asp.
net controls. What I am wondering is, if we use asp.
net controls in those HTML files, is there way to
…