I'm pretty new to web programming, reading a book on ASP.NET, and I notice the author does this;
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
Instead of what Visual Studio does, which is this;
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
Is the first way of doing it an acceptable and multi-browser compatible shortcut?