N Nikhil Mar 19, 2004 #1 How to create web page templates in ASP.net as in Dreamweaver with editable regions and non-editable regions? Thanks, Nik
How to create web page templates in ASP.net as in Dreamweaver with editable regions and non-editable regions? Thanks, Nik
S Steve C. Orr [MVP, MCSD] Mar 19, 2004 #2 It cannot be done easily with the current version of ASP.NET. ASP.NET 2 will have such functionality built in. For now you'll have to resort to one kind of hack or another. Here's some for you to choose from: http://authors.aspalliance.com/PaulWilson/Articles/?id=14 http://www.sellsbrothers.com/writing/default.aspx?content=projectitemtemplates.htm
It cannot be done easily with the current version of ASP.NET. ASP.NET 2 will have such functionality built in. For now you'll have to resort to one kind of hack or another. Here's some for you to choose from: http://authors.aspalliance.com/PaulWilson/Articles/?id=14 http://www.sellsbrothers.com/writing/default.aspx?content=projectitemtemplates.htm
T TJS Mar 19, 2004 #3 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.
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.