일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 엑셀
- replace()
- javascript
- Excel
- MSSQL
- windows
- 오라클
- 윈도우
- Winform
- jQuery
- oracle
- 윈폼
- c#
- 단축키
- DataGrid
- attr()
- aspnet
- IIS
- 프로시저
- CONVERT()
- 마이크로소프트
- 리포팅서비스
- 태그를 입력해 주세요.
- ASP
- 자바스크립트
- MS
- SSRS
- 이클립스
- 비주얼스튜디오
- microsoft
Archives
- Today
- Total
DJ메탈짱™의 Free Style
datagrid to excel,csv export 할때 오류나는 경우...확인사항 본문
데이터그리드에 바인딩 값을 export 하려고 할때 오류가 발생하면 아래와 같은 경우를 확인하자.
[ErrorMessage]
- 형식 'DataGridLinkButton'의 컨트롤 'dgList__ctl2__ctl0'은(는) runat=server 구문과 함께 form 태그 내부에 와야 합니다.
xxx.cs (export 기능이 있는 파일)
public override void VerifyRenderingInServerForm(System.Web.UI.Control control)
{
// Confirms that an HtmlForm control is rendered for the specified ASP.NET server control at run time.
}
[ErrorMessage]
- RegisterForEventValidation은 Render()를 실행하는 동안에만 호출할 수 있습니다.
xxx.aspx (다운로드버튼 있는 aspx 파일)
<%@ Page language="c#" Codebehind="UI200010.aspx.cs" EnableEventValidation="false"
--> EnableEventValidation="false" // 이 부분 추가
이후 부터는 정상적으로 데이터그리드의 내용을 다운로드 받을 수 있음.
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[.NET] 비주얼스튜디오(VS) 차트 (Dundas Chart) - Sample (0) | 2015.12.11 |
---|---|
[ASP.NET] CustomValidator, ErrorMessage 속성 관리 (0) | 2015.12.11 |
[ASP.NET] 관리되는 통합 파이프라인 모드에 적용되지 않는 ASP.NET 설정이 있습니다. (0) | 2015.12.11 |
[ASP.NET] 서버 위치한 pdf파일 저장, download (0) | 2015.12.08 |
[ASP.NET] ReportViewer 사용시 오류발생, web.config (0) | 2015.12.08 |