Code inspection: ASP.NET Dead CodeLast modified: 08 April 2024Category: Potential Code Quality IssuesID: Asp.DeadCodeEditorConfig: resharper_asp_dead_code_highlighting=[error|warning|suggestion|hint|none]Default severity: WarningLanguage: ASP.NETRequires 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