实名认证用户熊川湘 身份证号码430811198506290914

随笔分类 -  代码成品库

摘要:最早时间:<asp:DropDownList ID="StrTime" runat="server" style="margin-right:60px"/>最晚时间:<asp:DropDownList ID="EndTime" runat="server" />StrTime.Items.Clear(); EndTime.Items.Clear(); string M = "0"; for (int N = 0; N < 24; N++) { if (N > 9) { M = ""; } StrTime.Items.Add(new ListItem((M + 阅读全文
posted @ 2011-02-15 11:46 浪达短信群发 阅读(150) 评论(0) 推荐(0)
摘要:调用:SetDropDownList(RoomNum, 1, 10, 0);/// <summary> /// 设置DropDownList下拉列表的内容 /// </summary>public static void SetDropDownList(DropDownList xDropDownList,int xMin,int xMax,int xInt){xDropDownList.Items.Clear(); for(int i=xMin;i<=xMax;i++) { ListItem myItem=new ListItem(i.ToString(),i. 阅读全文
posted @ 2011-02-15 11:41 浪达短信群发 阅读(185) 评论(0) 推荐(0)
摘要:/// <summary> /// SQL的条件符号枚举。dengyu表示“等于”,dayu表示“大于”,dayuOrdengyu表示“大于并且等于”,xiaoyuOrdengyu表示“小于并且等于”,inType表示“in”,like表示"like"/// <... 阅读全文
posted @ 2010-07-14 17:52 浪达短信群发 阅读(272) 评论(0) 推荐(0)