Imagine that you have a text control like this: <asp:TextBox ID="txtName" runat="server /> I see all kinds of examples that get the control valuelike this: document.forms[0].txtName ---or--- document.getElementByID("txtName") While it might work in simple situations, it...