javascript;css;firefox;ie;区别1. document.formName.item("itemName") 问题 说明:IE下,可以使用document.formName.item("itemName")或document.formName.elements["elementName"]; Firefox下,只能使用document.formName.elements["elementName"]. 解决方法:统一使用document.formName.elements["elem Read More
using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace ControlLib{ [DefaultProperty("Text")] [ToolboxData("<{0}:CallBackTextBox runat=server>< Read More
<Columns> <asp:TemplateField HeaderText="全选"> <ItemTemplate> <asp:CheckBox ID="cb" runat ="server" /> </ItemTemplate> <HeaderTemplate> <asp:CheckBox ID="quanxuan" runat="server" Text="全选" OnCheckedChan Read More