摘要: 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 阅读(2636) 评论(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 阅读(315) 评论(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 阅读(1934) 评论(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 阅读(916) 评论(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 阅读(2046) 评论(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 阅读(973) 评论(0) 推荐(0) 编辑
摘要: a.aspx.cs//获取a中的idHttpCookie objCookie = new HttpCookie("myCookie", id); Response.Cookies.Add(objCookie);b.aspx.cs//获取a中的idstring id = Requ... 阅读全文
posted @ 2015-12-31 15:02 Coding&Now 阅读(364) 评论(0) 推荐(0) 编辑
摘要: usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Drawing;usingSystem.Tex... 阅读全文
posted @ 2015-12-30 16:29 Coding&Now 阅读(678) 评论(0) 推荐(0) 编辑