2012年3月5日

using ISerializable to control serialization and deserialization

摘要: [Serializable]publicclassOuterClass:ISerializable{publicOuterClass(){}privateOuterClass(SerializationInfoinfo,StreamingContextcontext){MyField=info.GetString("MyField");Inner=(InnerClass)info.GetValue("Inner",typeof(InnerClass));}#regionISerializableMemberspublicvoidGetObjectData 阅读全文

posted @ 2012-03-05 09:41 shcity 阅读(183) 评论(0) 推荐(0) 编辑

2011年9月20日

ViewStateAutoManager

摘要: using System;using System.Web.UI;using System.Reflection;using System.Collections.Generic;using System.Collections;namespace My.Common{ [AttributeUsage(AttributeTargets.Property)] public class ViewStateAttribute : Attribute { } public class BasePage : Page { protected override object SaveViewState() 阅读全文

posted @ 2011-09-20 13:43 shcity 阅读(161) 评论(0) 推荐(0) 编辑

2011年5月20日

ReportingService formatting

摘要: Standard Numeric Format Stringshttp://msdn.microsoft.com/en-us/library/dwhawy9k(VS.95).aspxCustom Numeric Format Stringshttp://msdn.microsoft.com/en-us/library/0c899ak8(VS.95).aspxDate Formatting in Reporting Services – list of format codeshttp://thavash.wordpress.com/2007/10/02/date-formatting-in-r 阅读全文

posted @ 2011-05-20 12:35 shcity 阅读(167) 评论(0) 推荐(0) 编辑

2011年3月30日

Build my own DataTable

摘要: publicclassMyTable:List<MyRow>,ITypedList{publicMyTable(){for(inti=0;i<5;i++){MyRowht=newMyRow();ht.Table=this;ht.Add("Name","name"+i);ht.Add("Age",i+10);ht.Add("Address","add:"+i);this.Add(ht);}}#regionITypedListMemberspublicPropertyDescrip 阅读全文

posted @ 2011-03-30 13:24 shcity 阅读(205) 评论(0) 推荐(0) 编辑

2011年1月25日

split a string into an array through comma

摘要: [代码] 阅读全文

posted @ 2011-01-25 14:07 shcity 阅读(161) 评论(0) 推荐(0) 编辑

2011年1月24日

div with separated html template

摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"htmlxmlns="http://www.w3.org/1999/xhtml"headtitle/titlescriptfunctionsetSize 阅读全文

posted @ 2011-01-24 17:22 shcity 阅读(181) 评论(0) 推荐(0) 编辑

2010年12月13日

正则表达式替换日期

摘要: [代码] 阅读全文

posted @ 2010-12-13 13:24 shcity 阅读(877) 评论(0) 推荐(0) 编辑

2007年12月18日

半透明的div对话框

摘要: 源码:<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><title></title><scripttype="text/javascript">functionMessag 阅读全文

posted @ 2007-12-18 19:03 shcity 阅读(2589) 评论(0) 推荐(0) 编辑

2007年12月5日

foreach 的自动转化类型

摘要: namespace WindowsApplication9 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender... 阅读全文

posted @ 2007-12-05 16:55 shcity 阅读(364) 评论(0) 推荐(0) 编辑

2007年5月27日

在Ajax1.0中调用页面CS文件中的方法

摘要: 环境: windows 2003 sp2 + vs 2005 专业版 sp1 + ajax1.0 正式版 test.aspx文件代码: 无标题页 test.cs 代码如下: using System; using System.D... 阅读全文

posted @ 2007-05-27 17:39 shcity 阅读(756) 评论(2) 推荐(0) 编辑

导航