Author: Scott Hanselman's Computer Zen - ASP.NET | Posted on: 6/23/2009 5:10:34 PM | Views : 950

I've got a little something I'm doing and I wanted to take control over some scripts that were being added by ASP.NET WebForms. Remember that ASP.NET WebForms is designed around a control/component model, so you don't get 100% control over your markup. When you drag a control onto the page in WebForms, you expect it to work. ScriptManager Basics For example, if I'm going to do so stuff with GridView and an UpdatePanel, I might do this: <body> <form id="form1" runat="server"> <asp:ScriptManager runat="server"> </asp:ScriptManager> <div> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:GridView ID="GridView1" runat...(read more) Go to the complete details ...