01 2016 档案

摘要:1 USE master; 2 GO 3 DECLARE @SQL VARCHAR(MAX); 4 SET @SQL='' 5 SELECT @SQL=@SQL+'; KILL '+RTRIM(SPID) 6 FROM master..sysprocesses 7 WHERE dbid=DB_ID( 阅读全文
posted @ 2016-01-28 09:23 Coding&Now 阅读(3359) 评论(0) 推荐(0)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.... 阅读全文
posted @ 2016-01-19 13:58 Coding&Now 阅读(2750) 评论(0) 推荐(2)
摘要:private void button1_Click(object sender, EventArgs e) { int[] numbers = new int[7] { 0,1,2,3,4,5,6}; var result0 = from... 阅读全文
posted @ 2016-01-15 16:55 Coding&Now 阅读(330) 评论(0) 推荐(0)
摘要:哈希表的使用Hashtable hashtable = new Hashtable();hashtable.ContainsValue(tmp);//判断哈希表中有没有tmphashtable.add(tmp,tmp);//加入哈希表DataSet的使用SqlDataAdapter sda = ne... 阅读全文
posted @ 2016-01-12 09:21 Coding&Now 阅读(1978) 评论(0) 推荐(0)
摘要:1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.... 阅读全文
posted @ 2016-01-11 10:49 Coding&Now 阅读(976) 评论(1) 推荐(1)
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
posted @ 2016-01-04 23:05 Coding&Now 阅读(2162) 评论(0) 推荐(0)
摘要:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Frame.aspx.cs" Inherits="FrameSet.Frame" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Fra 阅读全文
posted @ 2016-01-04 13:50 Coding&Now 阅读(987) 评论(0) 推荐(0)