Code Inspection: ASP.NET dead codeLast modified: 21 March 2024tipYou 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, JetBrains Rider suggests removing it:Before<script runat="server"></script>After// removed