摘要:
为了使用CNBLOG上的服务器端ConfirmDialog,我自己做了一个,用起来还不错.1. 界面: Label Dialog Text Yes No 界面可以自己定义,但... 阅读全文
摘要:
事件处理方法如下:(Repeater1绑定的数据是一个表,有一个列叫VfID) protected void Repeater1_ItemDataBound(object sender, RepeaterItemEventArgs e) { if ( e.Item.ItemType == ListItemType.Item ) { ... 阅读全文
摘要:
为了理解Repeater控件,今天做了个试验: protected void Repeater1_ItemCreated(object sender, RepeaterItemEventArgs e) { Label1.Text += string.Format("Index:> ------ Type:>",e.Item.ItemIndex,e.Item.I... 阅读全文