2013年8月30日

摘要: DES加密解密:using System;using System.Collections.Generic;using System.Xml.Linq;using System.Text;using System.Security.Cryptography;using System.IO;namespace MemoryPassword{ public class MyEncrypt { private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; pri... 阅读全文
posted @ 2013-08-30 17:37 Lucifer_Tian 阅读(371) 评论(0) 推荐(0)
摘要: 可以用记事本打开项目文件(.csproj),然后找到 ProjectTypeGuids。可以看到,比如 {349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}然后查一下下面的表,就可以知道项目的 type 了。上面这个例子的项目就是一个C# 的 Web Application Debug AnyCPU 2.0 {A65034A8-2CD0-4058-820C-1A07752E1410} {349c5851-65df-11da-9384-00065... 阅读全文
posted @ 2013-08-30 11:34 Lucifer_Tian 阅读(603) 评论(0) 推荐(0)

2013年7月1日

摘要: 最近做项目客户需要一个按某种周期显示日期的控件 这样方便客户按周期选择日期(有点像大姨妈周期表)。查了一下相关资料发现在ASP.net中RadDatePicker自带,和而silverlight中并没有相关的templete。所以没办法自己研究了一下 发现只能在style里面做。所以就在style中加了一个datetempletestyle: usercontrol: 其中CalendarView是控制背景... 阅读全文
posted @ 2013-07-01 17:07 Lucifer_Tian 阅读(767) 评论(0) 推荐(0)

导航