自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (2)
  • 收藏
  • 关注

原创 C#_datagridview 增加一行统计

String projectfliter=null; private void toolStripComboBox2_DropDownClosed(object sender, EventArgs e) { projectfliter = toolStripComboBox2.SelectedItem.ToString(); DataSet da = new DataSet(

2012-04-03 09:46:23 431

原创 C#_Datagridview Exprot to Excel

Using Microsoft.Office.Interop.Excel; //需要在引用里加入dll     private void toolStripMenuItem9_Click(object sender, EventArgs e) { Microsoft.Office.Interop.Excel.Application excel = new Microso

2012-04-03 09:31:27 180

原创 SQL_修改删除与GridView配合使用

using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.

2012-03-26 21:19:48 283

原创 SQL_添加语句

SqlConnection con = new SqlConnection("Server=localhost;database=qcwx;uid=sa;pwd=sasasa");                  con.Open();                  SqlCommand cmd = new SqlCommand("InsertDate5", con);

2012-03-26 21:03:19 332

原创 SQL_搜索语句

using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Data.S

2012-03-26 20:59:32 235

原创 ASP.NET_登录例子

using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.

2012-03-26 20:50:38 346

原创 ASP.NET_Session

using System.Web;//引用;   //Form1父窗体; Session["name"] = tname.Text;   //Form2子窗体; string Name = Session["name"].ToString(); this.tname.Text = Name;

2012-03-26 20:41:31 205

原创 ASP.NET_SQL连接和关闭

using System.Data.SqlClient;//引用   SqlConnection con = new SqlConnection("Server=localhost;database=qcwx;uid=sa;pwd=sasasa"); con.Open(); //to do con.close();

2012-03-26 20:28:38 227

软件体系结构读书报告

软件体系结构读书报告,课程资源,帮助你更好的了解软件体系结构。

2012-11-09

C# 文件搜索与带结构拷贝

实现搜索目标路径所有类型文件,带文件夹结构拷贝或者不带结构拷贝到同一目录下。

2012-11-09

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除