ppuniversal
December 29th, 2008, 08:09 AM
Hi,
I want to create a ASP .NET web application in which I want to put my comments in a node like this:
<form id="form1" runat="server">
<div>
<comment> This is a comment </comment>
</div>
</form>
In the example above, I am writing my comment in a node <comment>
My issues are:
1. First I need to find a way to make my application understand this custom comment tag.
2. Then I want to make this tag behave like a commented block like:
<%--This is a comment--%>
Thanks,
Pawan
I want to create a ASP .NET web application in which I want to put my comments in a node like this:
<form id="form1" runat="server">
<div>
<comment> This is a comment </comment>
</div>
</form>
In the example above, I am writing my comment in a node <comment>
My issues are:
1. First I need to find a way to make my application understand this custom comment tag.
2. Then I want to make this tag behave like a commented block like:
<%--This is a comment--%>
Thanks,
Pawan