일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 윈도우
- 자바스크립트
- 태그를 입력해 주세요.
- 비주얼스튜디오
- SSRS
- DataGrid
- jQuery
- CONVERT()
- replace()
- MSSQL
- IIS
- Excel
- 윈폼
- microsoft
- aspnet
- javascript
- ASP
- 리포팅서비스
- MS
- c#
- oracle
- 프로시저
- 엑셀
- 이클립스
- 단축키
- 오라클
- Winform
- attr()
- 마이크로소프트
- windows
Archives
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] Trace 추적정보 확인 본문
|
|
SqlConnection conn;
try
{
conn = new SqlConnection("server=localhost; database=pubs; uid=sa; pwd=;") ;
conn.Open() ;
}
catch(SqlException e)
{
Trace.Write("Sql Error", "아래와 같은 이유에서 예외가 발생하였습니다", e) ;
}
* 실행시 웹 브라우저에서 추적정보 확인 결과
Sql Error : 아래와 같은 이유에서 예외가 발생하였습니다.
'sa' 사용자가 로그인하지 못햇습니다.
at System.Data.SqlClient.SqlConnection.Open()
at ErrorTrance.WebForm1.Button1_Click(Object sender, EventArgs e)
in C:\inetpub\wwwroot\errortrance\webform1.aspx.cs : line 56
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] Failed to Access IIS Metabase (0) | 2015.11.12 |
---|---|
[ASP.NET] 3종류의 세션 상태 저장 방법 (0) | 2015.11.11 |
[ASP.NET] ViewState의 장단점 (0) | 2015.11.11 |
[ASP.NET] DataGrid 이벤트 (0) | 2015.11.11 |
[ASP.NET] ASP.NET 설치시 파일 업로드 제한 (0) | 2015.11.11 |