Skip to main content

Add End Tag (ASP.NET)

Converts a self-closing tag to a container tag.

#Availability

Available from the context menu or via shortcuts:

  • when the cursor is on a self-closing tag.

#Examples

<asp:Label CssClass="labelClass" id="label" runat="server" />

Result:

<asp:Label CssClass="labelClass" ID="label" runat="server">
</asp:Label>

#Screenshot

AddEndTag