摘要: 1,为了将xml文档中的数据反序列化为对象,下面这个类包含了三个常用类,和一个反序列化对象类。(1)对象类LeiXing /// <summary> /// 物业类型 /// </summary> [Serializable] [XmlRoot] public class LeiXing { [XmlElement] public string Value { get; set; } [XmlElement] public string Text { get; set; } }(2)EFdr... 阅读全文
posted @ 2012-12-13 23:25 金河 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1,ime-mode共有4个值,如下,前两个可以输入汉字,后两个不能输入汉字。 <input type="text" name="textfield" style="ime-mode:auto " /> <input type="text" name="textfield" style="ime-mode:active " /> <input type="text" name="textfield" sty 阅读全文
posted @ 2012-12-13 15:33 金河 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 1,ControlValueJson类:内部一个成员变量public Dictionary<string, string> ControlValue = new Dictionary<string, string>();用来保存标签的id和value; 方法ResponJson()返回json字符串。 public class ControlValueJson { /// <summary> /// key控件id,value控件值 /// </summary> public Dictionary<string, string> C. 阅读全文
posted @ 2012-12-13 13:02 金河 阅读(490) 评论(0) 推荐(0) 编辑