随笔分类 -  GridView

摘要:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->protectedvoidbtnExcel_Click(objectsender,EventArgse)... 阅读全文
posted @ 2008-08-26 17:14 李济宏(Amadeus) 阅读(222) 评论(0) 推荐(0) 编辑
摘要:Utility.aspx.cs:(主页面)Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->try{DataTabledt=newDataTable();... 阅读全文
posted @ 2008-07-29 12:55 李济宏(Amadeus) 阅读(155) 评论(0) 推荐(0) 编辑
摘要:protectedvoidImageButton2_Click(objectsender,ImageClickEventArgse){divGrdShow.Visible=true;//获取编辑行的索引ImageButtonimageBut=senderasImageButton;GridViewR... 阅读全文
posted @ 2008-06-18 16:08 李济宏(Amadeus) 阅读(129) 评论(0) 推荐(0) 编辑
摘要:protectedvoidgrdSignedAss_RowCommand(objectsender,GridViewCommandEventArgse){if(e.CommandName=="assReg"){intintRow=int.Parse(e.CommandArgument.ToStrin... 阅读全文
posted @ 2008-04-17 13:49 李济宏(Amadeus) 阅读(148) 评论(0) 推荐(0) 编辑
摘要:带多个参数:另一种后台编写方法:[Vegas原创]'>protectedvoidGridView1_RowDataBound(objectsender,GridViewRowEventArgse){//在不可见之前做很多事情~~~~if(e.Row.RowType==DataControlRowTy... 阅读全文
posted @ 2008-03-20 15:34 李济宏(Amadeus) 阅读(158) 评论(0) 推荐(0) 编辑
摘要:添加标签页http://orangoo.com/labs/greybox/将下载下来的greybox目录放至专案下面var GB_ROOT_DIR="./greybox/";这个是指向你本机的greybox的相对目录。在本机测试使用时,如按网站的demo格式:varGB_ROOT_DIR="http... 阅读全文
posted @ 2008-02-26 11:22 李济宏(Amadeus) 阅读(153) 评论(0) 推荐(0) 编辑
摘要:DataGrid:需加DataFormatStringGridView:需加HTMLEncode 和 DataFormatString 阅读全文
posted @ 2007-12-10 20:41 李济宏(Amadeus) 阅读(149) 评论(0) 推荐(0) 编辑
摘要:我给GridView控件的各个BoundField数据行设定了DataFormatString属性,但是没有任何效用。解决方法:将BoundField数据行的HtmlEncode属性设定成FalseCode highlighting produced by Actipro CodeHighlight... 阅读全文
posted @ 2007-11-21 13:40 李济宏(Amadeus) 阅读(120) 评论(0) 推荐(0) 编辑
摘要:Rowdatabound实践中:if(e.Row.RowIndex!=-1){intid=e.Row.RowIndex+1;e.Row.Cells[0].Text=id.ToString();} 阅读全文
posted @ 2007-10-31 17:08 李济宏(Amadeus) 阅读(149) 评论(0) 推荐(0) 编辑
摘要://为DataSet添加DataTableds.Tables.Add(dt);//为DataTable添加DataSetdatatabledt=dataset.Table[0] 阅读全文
posted @ 2007-10-16 10:20 李济宏(Amadeus) 阅读(165) 评论(0) 推荐(0) 编辑
摘要:需求: 某表单如果有附件,则显示图片;如果没有,则不显示。解决方案: 1.建一个Datagrid名为Result,form_no栏位是键接栏,最后一列是附件,用模版列。附件2.后台处理代码://显示附件stringform_no=Request.QueryString["Form_No"];Data... 阅读全文
posted @ 2006-10-13 14:02 李济宏(Amadeus) 阅读(150) 评论(0) 推荐(0) 编辑