摘要: using System;using System.IO;using System.Xml.Serialization;[Serializable]public class Model{ public string Name{get;set;} public string Possword{get;set;} public override string ToString() { return "Name:"+ Name+"possword:"+Possword; }}class App{ static void Main() { Model model 阅读全文
posted @ 2011-06-21 21:11 清山博客 阅读(216) 评论(0) 推荐(0)
摘要: 很久没弄jQuery了,今天做项目时,遇到个问题:js取不到选中的CheckBoxList的ListItem的值。CheckBoxList前台解析为:<table id="listTest" border="0"><tr> <td> <input id="listTest_0" type="checkbox" name="listTest$0" /> <label for="listTest_0">item1< 阅读全文
posted @ 2011-06-21 20:00 清山博客 阅读(853) 评论(0) 推荐(0)