Gridview 데이터가 excel을 내보낼 때 신분증 번호가 과학 계수법인 해결 방법

1362 단어
  if (e.Row.RowType == DataControlRowType.DataRow)
        {
            string id = this.GridView1.DataKeys[e.Row.RowIndex]["id"].ToString();
            if (e.Row.RowState == DataControlRowState.Normal || e.Row.RowState == DataControlRowState.Alternate)
            {
                ((LinkButton)e.Row.Cells[2].Controls[0]).Attributes.Add("onclick", "javascript:return confirm(' ?')");
            }
            e.Row.Cells[1].Text = String.Format("편집하다", id);
            e.Row.Cells[5].Attributes.Add("style", "vnd.ms-excel.numberformat:@;");  // excel 
           // e.Row.Cells[4].Attributes.Add("style", "vnd.ms-excel.numberformat:@;");
        }

  
일반적으로 Gridview에서 데이터를 excel로 내보낼 때 신분증 번호는 과학적 계수법으로 현시되어 내보낸 정확성에 영향을 미친다. 인터넷에서 자료를 찾아본 결과 다음과 같은 방법으로 이런 문제를 해결할 수 있음을 발견하였다
gridview의rowdatabound 이벤트에 다음 코드를 쓰십시오
if (e.row.rowtype=datacontrolrowtype.datarow) then

    e.row.cell(i).attributes.add("style","vnd.ms-excel.numberformat:@;")

end  if

  
 
그중 i는 주민등록번호의 열로 세면 0부터 시작하는데 사실은 형식을 추가했습니다. 더 많은 해답은 vnd를 사용하십시오.ms-excel.numberformat 키워드 검색
다음으로 전송:https://www.cnblogs.com/alanjl/p/3423140.html

좋은 웹페이지 즐겨찾기