본문 바로가기

Web Program159

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.
Automatically Printing Crystal Reports 3 Export to PDF As you may have learned from experience, the output from a CrystalReportViewer does not always look like you had intended. That is because the output is rendered as HTML and sent to the browser that then generates the web page. In order to get the exact formatting you want, you should export your reports as PDF documents. One advantage of doing so is that most users know how to pri.. 2009. 5. 15.
Automatically Printing Crystal Reports 2 Client Side JavaScript: window.Print A second option you have uses the JavaScript window.Print method. Adding this method to the onLoad event of the BODY tag will trigger the browser to print the current page. Adding this method to a button.onClick event can also be done, just make sure you are using a standard HTML button and not an ASP.NET button control (if you do use an ASP.NET button contro.. 2009. 5. 15.