tags:

views:

93

answers:

2

I need to leave some instructional comments for other developers on a page/user control. Is there a better way to do this besides the below?

  <% /* DO NOT rename control IDs here, because blah blah blah... */ %>
A: 

That is about it, barring a HTML comment.

Your options are:

 <!-- Renders to ClientOutput too -->

or:

 <% /* Your original idea */ %>
FlySwat
+5  A: 
<%-- Comment Here --%>
Greg Ogle
Ahh, it's the simple things! Thanks. :)
Kon
Ah Cool, learn something new each day.
FlySwat