반응형
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int Number = e.Row.DataItemIndex + 1;
e.Row.Cells[0].Text = Number.ToString();
}
}
끝~
반응형
'ASP.NET' 카테고리의 다른 글
ASP.NET GridView 컨트롤에서 EmptyDataText 정렬 (0) | 2011.03.10 |
---|---|
팝업창 열린페이지 버튼 클릭 해서 강제로 닫기 (3) | 2011.03.03 |
버튼 클릭시 팝업창 띄우기 (0) | 2011.02.17 |
자바스크립트 메세지박스 바로 해보기 (0) | 2010.12.21 |
Ajax UpdatePanel 팝업창으로 검색... (2) | 2010.11.16 |
Comments