摘要: 1. 进度条模板文件 ProgressBar.htm程序代码<html><head><title></title><script language="javascript">//设置进度条进度function SetPorgressBar(msg, pos){ ProgressBar.style.width= pos + "%"; Wri... 阅读全文
posted @ 2010-03-09 13:30 会游泳dě鱼 阅读(481) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2010-03-09 01:45 会游泳dě鱼 阅读(9) 评论(0) 推荐(0) 编辑
摘要: First, you should add the following directives:Listing 1 - DirectivesThe following steps can be considered as a generic procedure of getting an FTP request executed using FtpWebRequest object.1. Creat... 阅读全文
posted @ 2010-03-07 23:38 会游泳dě鱼 阅读(422) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Collections;using System.Linq;using System.Text;using System.IO;namespace BackUp{ /// <summary> /// 对本地备份操作 /// </summary> public... 阅读全文
posted @ 2010-03-06 11:22 会游泳dě鱼 阅读(265) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;namespac... 阅读全文
posted @ 2010-03-06 11:22 会游泳dě鱼 阅读(269) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;namespace BackUp{ public class IniFile { ////声明读写INI文件的API函数 [DllImport("kernel3... 阅读全文
posted @ 2010-03-06 11:21 会游泳dě鱼 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 系统日志using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;namespace BackUp{ public class Logs { private StreamWriter swWrite = null;//写文件 private string log... 阅读全文
posted @ 2010-03-06 11:20 会游泳dě鱼 阅读(175) 评论(0) 推荐(0) 编辑
摘要: string sql= "Select item1,item2,item3 from tableA"; SqlConnection cn =new SqlConnection("server=(local);uid=sa;pwd=;database=examonline"); SqlDataAdapter da =new SqlDataAdapter(sql, cn); DataSet ds=ne... 阅读全文
posted @ 2010-01-13 15:50 会游泳dě鱼 阅读(685) 评论(0) 推荐(0) 编辑
摘要: 昨天晚上,一个高中时候的朋友跟我说,她呆的地方不好,想换个地方!大家毕业出来了,每个人都是忙着找工作。为了生活奔波在全国各地!    今天早晨,那朋友又QQ跟我聊了一会,她告诉我,她是特岗老师。我就问 特岗在哪?    她也没有多说什么,叫我自己上网查,    上网一查 我才知道 特岗老师就是特别岗位老师,国家已经出台政策几年了。    很多大学生,为了生活,不得不放弃自己当初的梦想,回归到现实,... 阅读全文
posted @ 2009-12-01 10:17 会游泳dě鱼 阅读(180) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace LINQ技术 { class Program { static void Main(string[] args) { //LINQ中的Where扩展方法,要想使用,必须导入using System.... 阅读全文
posted @ 2009-11-07 11:51 会游泳dě鱼 阅读(266) 评论(0) 推荐(1) 编辑