Code inspection: ASP.NET Dead CodeLast modified: 08 April 2024 Category: Potential Code Quality Issues ID: Asp.DeadCode EditorConfig: resharper_asp_dead_code_highlighting=[error|warning|suggestion|hint|none] Default severity: Warning Language: ASP.NET Requires SWA: NotipYou can suppress this inspection to ignore specific issues, change its severity level to make the issues less or more noticeable, or disable it altogether.This inspection detects dead ASP.NET code such as empty tags. For example, if a tag that should have a value, such as <script>, is empty, ReSharper suggests removing it:Suboptimal code<script runat="server"></script>After the quick-fix// removed