Web page Templates in ASP.net?

  • Thread starter Thread starter Nikhil
  • Start date Start date
N

Nikhil

How to create web page templates in ASP.net as in Dreamweaver with
editable regions and non-editable regions?

Thanks,
Nik
 
For templates I just create an html file with custom tags like,
{{something}} , and then read the html file and replace the custom tags with
dynamic content and output the string to a "label" tag in a web form.
 
Back
Top