自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(4)
  • 收藏
  • 关注

转载 c# ftp class[轉]

// 轉自:http://www.cnblogs.com/tuyile006/archive/2009/02/23/1396524.html// 存在自己的blog以備查用。using System;using System.Net;using System.IO;using System.Text;using System.Net.Sockets;///

2012-05-25 09:12:21 184

转载 [T-SQL][WITH]怪招案例

1.with , 階層式sqlWITH tmpTree (categoryID, Parentcategory, categoryName, lvl ,num ) AS (SELECT categoryID, Parentcategory, categoryName, 0,0 FROM tblCategory UNION AllSELECT a.categoryID, a.Pare

2012-05-09 20:24:14 361

转载 [ASP.NET/C#][GridView][Header]要加怪東西時的處理方式

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.Header) { e.Row.Cells[0].Text = ""; } }

2012-05-08 17:56:50 865

转载 [ASP.NET/C#][GridView][DataFormatString]用法

DataFormatString 在GridView的用法1.數字格式格式字串輸入結果"{0:C}" 12345.6789 ==> $12,345.68"{0:C}" -12345.6789 ==>($12,345.68)"{0:D}" 12345 ==>12345"{0:D8}" 12345 ==>00012345"{0:E}" 12345.6789 ==>123

2012-05-07 16:30:55 454

空空如也

空空如也

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

TA关注的人

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