gridview2 Gridview image 동적 추가 GridView 에 동적으로 Image 를 넣어보자 aspx 코드 aspx.cs protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { int intNo = 0; intNo = e.Row.RowIndex + 1; e.Row.Cells[0].Text = intNo.ToString(); string strLink; strLink = e.Row.Cells[4].Text.ToString() + "/" + e.Row.Cells[5].Text.ToString(); if (strLink != "") { Image image = e.Row.Fi.. 2009. 8. 26. GridView: Creating groups and summaries with 2 lines of code gridview 의 날개를 단거 같다.. group, summary 등등 다 된다.. 제작자에게 감사를 느낀다. 원문 : http://www.agrinei.com/gridviewhelper/gridviewhelper_en.htm GridView: Creating groups and summaries with 2 lines of code GridView has a lot of improvements over the DataGrid but it still lacks some very important features. A recurring requirement not available in the GridView is to create groups and summaries. To create summarie.. 2009. 6. 9. 이전 1 다음