清空多个文本框
摘要:private void ClearText(Control cParent) { foreach (Control c in cParent.Controls) { if (c.HasControls()) { ClearText(c); } else { if (c is TextBox) { ((TextBox)c).Text = string.Empty; } } } }
阅读全文
下拉框指定页面条数
摘要:1.. 前台<PagerTemplate> <asp:DropDownList ID="ddlpage" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlpage_SelectedIndexChanged"> <asp:ListItem>12</asp:ListItem> <asp:ListItem>20</asp:ListItem> <asp:ListItem&
阅读全文
下拉框绑定
摘要:/// <summary> /// 填充下拉框 /// </summary> /// <param name="strSql"></param> /// <param name="drp"></param> /// <param name="strValue"></param> /// <param name="strTxt"></param> /// <returns></re
阅读全文