Link to home
Start Free TrialLog in
Avatar of freezegravity
freezegravity

asked on

Putting a comment on an aspx file

Hello:

This should be easy enough. How do I put a comment out some lines on an aspx file (NOT code-behind) file. Also, how can I make it so that the final rendered HTML does not contain this comment?

Thanks!
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

This way

<!-- your comment -->
ASKER CERTIFIED SOLUTION
Avatar of McExp
McExp
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The poster's language is C#, so I was giving my code sample in the corect language!  

// is a valid comments symbol in C#
Didn't looked for the zone! :-)
Avatar of freezegravity
freezegravity

ASKER

THANKS ALL!