this might be simple, but I can't find information about it.
Why is the aspnethidden CSS class missing from the div's around hidden form fields in my development environment and not on the production environment? It looks like this:
<div>
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="..." />
<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="..." />
</div>
instead of this:
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="..." />
<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="..." />
</div>
The server and my dev machine are running on .NET Framework 4.6.1 and IIS is configured to use the .NET CLR 4.0 in the application pool.
I'm just curious to know why this is missing on my Windows 10 Dev machine.