본문 바로가기

Web Program/Asp.net Lecture41

space 없는 영문단어 줄바꿈 (word - wrap) 2009. 5. 27.
gridview 컬럼 hide 시키기 gridview 에서 column 을 visible = false 시킬경우 데이타 값까지 없어진다. 이런 황당한 경우가.. 정말 삭제하는 기능이다. 데이타는 유지하면서 column 을 HIde 시켜보자 gridview 이벤트에 RowCreated 이벤트를 생성한다. protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e) { e.Row.Cells[2].Visible = false; } 와 같이 추가 하자 하지만 이렇게 할 경우 에러가 발생한다. 왜일까.. RowType 에 Footer 가 없기 떄문이다. 이렇게 고쳐보자 protected void GridView1_RowCreated(object sender, GridViewRo.. 2009. 5. 21.
App-Domain을 만들 수 없어서 요청을 실행하지 못했습니다. 비주얼 스튜디오를 먼저 설치후 IIS 를 설치하면 에러가 나타난다. 로그 이벤트를 보면 다음과 같은 메세지가 나타난다. App-Domain을 만들 수 없어서 요청을 실행하지 못했습니다. 그럴경우 IIS 서비스를 중지 시키고 vs2005 명령프롬프트에서 aspnet_regiis -i .net 이 올라오면서 셋팅이 완료된다. 2009. 5. 19.
Gridview header footer 고정하기 header style css 추가 .HeaderFreezing { background-color:White; position:relative ; top: expression(this.offsetParent.scrollTop); z-index: 10; } .FooterFreezing { background-color:White; position:relative; bottom: expression(this.offsetParent.scrollHeight - (this.offsetParent.scrollTop + this.offsetParent.offsetHeight)); z-index: 10; } .FreezingFooter { position:relative; bottom: expression((this... 2009. 5. 15.