- 博客(4)
- 资源 (11)
- 收藏
- 关注
原创 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; for(
2007-09-14 16:10:00
347
转载 C#函数和方法集
1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.Year; 1.3 取当前月
2007-08-28 10:58:00
368
原创 SQL语句
--语 句 功 能--数据操作SELECT --从数据库表中检索数据行和列INSERT --向数据库表添加新数据行DELETE --从数据库表中删除数据行UPDATE --更新数据库表中的数据--数据定义CREATE TABLE --创建一个数据库表DROP TABLE --从数据库中删除表ALTER TABLE --修改数据库表结构CREATE VIEW --创建一个视图DROP VIEW --
2007-07-29 09:49:00
531
原创 asp.net中cookie用法(转载)
写cookie HttpCookie UserCookie = new HttpCookie("userName"); UserCookie["name"]=dr["user"].ToString();UserCookie.Expires=DateTime.Now.AddDays(1);//这里设置要保存多长时间. Response.Cookies.Add(UserCookie);
2007-07-25 19:23:00
799
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人