自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

lanjinbo的专栏

C#,SILVERLIGHT, WCF

  • 博客(0)
  • 资源 (6)
  • 收藏
  • 关注

空空如也

mysql,、SQL SERVER 连接工具。

Navicat for MySQL 、Navicat for SQL SERVER 客户端连接工具。

2018-12-26

使用DES加密,解密字符串,并保存为文件的类

使用DES加密,解密字符串,并保存为文件的类。 先读取一个文件加密,再保存为另一个文件。解压则反之。 List<string> result = new List<string>(); using (StreamReader smRead = new StreamReader(textBox1.Text.Trim(), System.Text.Encoding.Default)) { //设置路径 string line; while ((line = smRead.ReadLine()) != null) { string en = EncryptAndDecrypt.EncryptDES(line, "intproue"); result.Add(en); } EncryptAndDecrypt.SaveToTxtFile&#40;result, false, textBox2.Text.Trim(&#41;); smRead.Close(); } MessageBox.Show("完成");

2012-08-06

table to JSON, JSON to table

JSON解析 JSON转为TABLE Table转化为JSON

2011-12-19

JSON 键值对的解析 C#

JSON 键值对的解析,直接得到某个键的值。

2011-12-19

用OWC11 开发的Chart的一个userControl

只要把这个userControl添加到你的website里就可以用了。示例代码: chart1.dataSource = 此处为一个Table。 chart1.Title = "IHC Notebook Products /VPM PSG Team Level of Availablity %(LOS)"; chart1.Caption_Y = "LOA"; chart1.Caption_X = "Week"; chart1.MajorUnit = 0.1; chart1.NumberFormat = "0.00%"; List<string> lineColor = new List<string>(); lineColor.Add("red"); lineColor.Add("yellow"); lineColor.Add("blue"); chart1.LineColor = lineColor; 特别说明:要显示几条线就在LIST<STRING>里加几条颜色名。

2009-03-21

ASP.NET AJAX深入浅出

深入浅出地讲解AJAX基本原理以及如果运用AJAX去。

2008-10-29

空空如也

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

TA关注的人

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