I am new to web programming, reading a book on ASP.NET, and I notice that the author is doing this;
<asp:ScriptManager ID="ScriptManager1" runat="server"/>
Instead of what Visual Studio does, what it is:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
Is the first way to make this acceptable and compatible with multiple browser shortcuts?
source
share