2

Does anyone know how I can disable ETag on IIS 7?

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296
Chirag
  • 261
  • 4
  • 11

2 Answers2

3

As I answered here (different question, same answer):

Open your IIS manager, click on the server, and go to HTTP Response Headers. Click the "Add..." button, and under name, enter:

ETag

(case sensitive). Under Value, enter

""

(thats two double quotes)

And ETags begone!

Mark Henderson
  • 68,316
  • 31
  • 175
  • 255
1

Microsoft doesn't make it easy. In fact, the only way I've found to do it requires installing a 3rd party plugin. At that point, the performance benefit of removing etags is questionable.

sysadmin1138
  • 131,083
  • 18
  • 173
  • 296