只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-10-09 01:42 石 磊 阅读(1320) 评论(7) 推荐(1) 编辑
摘要: 简单的javascript实现下拉联动效果 阅读全文
posted @ 2011-09-29 14:03 石 磊 阅读(641) 评论(0) 推荐(0) 编辑
摘要: ASP.NET用户控件的使用 阅读全文
posted @ 2011-09-29 13:47 石 磊 阅读(10706) 评论(0) 推荐(1) 编辑
摘要: AJAX的入门学习,通过XMLHTTPRequest向服务器发出请求,达到不用任何ajax框架实现AJAX效果; 阅读全文
posted @ 2011-09-07 01:09 石 磊 阅读(2917) 评论(1) 推荐(0) 编辑
摘要: View Code 1 <script type="text/javascript" language="javascript"> 2 function checkAll() { 3 4 for (var i = 0; i < document.getElementById("cblStatuteEnumTypeId").getElementsByTagName("input").length; i++) { 5 6 document.getElementById("cblStatute 阅读全文
posted @ 2011-06-17 17:03 石 磊 阅读(3567) 评论(0) 推荐(0) 编辑
摘要: public const int Num = 50000; //数目public const int MaxValue = 880296; //最大数public const int MinValue = 1; //最小数#region 产生随机数部分 /// <summary> /// 随机数进行排序 /// </summary> public int[] sort(int[] num) { int i, j, temp; int n = num.Le... 阅读全文
posted @ 2011-05-11 13:24 石 磊 阅读(447) 评论(0) 推荐(0) 编辑
摘要: public static string statistical_data = "统计数据信息.txt"; // List<string> list = new List<string>(); // list.Add("标题=" + Title_null_num.ToString() + "RowId=" + idr["RowId"].ToString());// list.Add("内容=" + FullContent_null_num.ToString() + &qu 阅读全文
posted @ 2011-05-11 13:14 石 磊 阅读(357) 评论(0) 推荐(0) 编辑
摘要: <form id="form1" runat="server"> <div><a href="tencent://Message/?Uin=***&amp;websiteName=q-zone.qq.com&amp;Menu=yes"> <img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" al 阅读全文
posted @ 2010-12-27 23:35 石 磊 阅读(1102) 评论(4) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2010-11-25 19:28 石 磊 阅读(239) 评论(0) 推荐(0) 编辑
摘要: CommandArgument传两个以上参数CommandArgument="<%# Eval("Id")+","+Eval("Name")%>"以逗号间隔参数代码:string[] arg = e.CommandArgument.ToString().Split(",");string id = arg[0];string name = arg[1];多个参数同样采取此种方法 阅读全文
posted @ 2010-11-25 17:35 石 磊 阅读(7063) 评论(3) 推荐(3) 编辑