08 2011 档案

摘要:表里面点开一个XML字段的值如下<MasterxRow> <ActivityType>2</ActivityType> <ProductType>21</ProductType> <RefNo>222222222222222222222</RefNo> <ContactResult>0</ContactResult> <Reason /> <OtherReason /> <OtherActivityType /> <OtherProductTyp 阅读全文
posted @ 2011-08-17 17:57 bule 阅读(997) 评论(0) 推荐(1)
摘要:1.在前天添加两个控件DropDownList和TextBox,在后台给DropDownList赋值和属性的值View Code DropDownList1.Items.Add(new ListItem(" ", " ")); ListItem item = new ListItem("1+1", "1");//绑定value item.Attributes.Add("key", "2");//绑定属性的value DropDownList1.Items.Add(item); 阅读全文
posted @ 2011-08-11 09:45 bule 阅读(1043) 评论(0) 推荐(1)