02 2010 档案
排序
摘要:public class Sorter { /// <summary> /// 冒泡排序法1 /// </summary> /// <param name="list"></param> public static void BubbleSort(int[] list) { for (int i = 0; i < list.Length; i... 阅读全文
posted @ 2010-02-05 10:38 Love婷 阅读(147) 评论(0) 推荐(0)
asp.net 常用语句
摘要:1.//弹出对话框.点击转向指定页面 Response.Write(&quot; <script>window.alert('该会员没有提交申请,请重新提交!') </script>&quot;); Response.Write(&quot; <script>window.location ='http://www.51aspx.com/... 阅读全文
posted @ 2010-02-05 10:33 Love婷 阅读(415) 评论(0) 推荐(0)
文本框自动补全
摘要://设置属性 初始化赋值 //AutoCompleteStringCollection acsc = new AutoCompleteStringCollection(); //acsc.Add("121212"); //acsc.Add("121"); //this.textBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMod... 阅读全文
posted @ 2010-02-04 11:14 Love婷 阅读(546) 评论(0) 推荐(0)