image1 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. 이전 1 다음