c#&asp.net文摘
FigoChoi
汕头大学工商管理硕士毕业、中国注册会计师、软件设计师,汕头市深蓝软件有限公司总经理。拥有10多年企业管理软件的开发、实施经验,为潮汕地区多家知名企业从事信息化及企业管理提供咨询意见。
展开
-
C#四种排序算法
冒泡排序using System;namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1; while((j<list.Length)&&(!done)) { done=true;转载 2006-12-29 14:00:00 · 423 阅读 · 0 评论 -
asp.net常用技巧
1. 打开新的窗口并传送参数: 传送参数: response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>") 接收参数: string a = Request.QueryString("id"); string b = R转载 2007-01-12 20:18:00 · 522 阅读 · 0 评论