ASP.NET custom templates, still ASP.NET controls possible?
Posted
by Sha Le
on Stack Overflow
See other posts from Stack Overflow
or by Sha Le
Published on 2010-03-14T12:51:11Z
Indexed on
2010/03/14
12:55 UTC
Read the original article
Hit count: 413
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 process them during step 2?
Thanks and appreciate your response.
© Stack Overflow or respective owner