1

what does

<%-- one or more lines of html markup or javascript --%>

mean on an aspx page. visual studio 2010 highlights in a way as to suggest its a comment or that it has been conditionalized out.

dan-
  • 191
  • 1
  • 1
  • 13

2 Answers2

3

It's a comment, I would call it server side comment as it's contents won't be delivered to client (browser) as opposed to normal html comments <!-- comments --> , take a look at Is there a way to comment out markup in an .ASPX page? .

Community
  • 1
  • 1
T W
  • 6,267
  • 2
  • 26
  • 33
0

Its a comment, that text wont be parsed/proccessed by asp.net and wont be delivered to the browser

JonAlb
  • 1,702
  • 10
  • 14