Web Program/Asp.net Lecture41 gridview 에서 엑셀로 export GridView 의 데이타를 엑셀로 Export 할경우 다음과 같은 코드를 사용한다. Response.AddHeader("content-disposition", "attachment;filename=FileName.xls"); Response.Charset = String.Empty; Response.ContentType = "application/vnd.xls"; System.IO.StringWriter sw = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter hw = new HtmlTextWriter(sw); GridView1.RenderControl(hw); Response.Write(sw.ToString()); Response.End(); .. 2009. 5. 4. ajax extention 설치후 web.config 설정 Ajax 를 사용하려 해도 Sys.Application.initialize() 스크립트 에러가 발생된다. Ajax 를 사용하기 위해 web.config 에 추가 해야 한다. 2009. 4. 29. gridview 에서 팝업 띄우기 출처 : 까막군's 주접 블로그 원문 : http://ariswear.com/new_blog/entry/ASPNet-GridView-%BF%A1%BC%AD-%C6%CB%BE%F7-%B8%B5%C5%A9-%B0%C9%B1%E2?category=5 Env. : ASP.NET 2.0 1. BoundField를 이용하는 방법 ->보여주는 Data와 link를 거는 Data를 다르게 할 수 없음. 2. TemplateField를 이용하는 방법 2009. 4. 22. 팝업창에서 부모창으로 데이타 전달 부모창에서 팝업을 연다. ClientScript.RegisterStartupScript(this.GetType(), "Popup", ""); 부모창의 스크립트 추가 팝업에서 데이타 넘기기 ClientScript.RegisterStartupScript(this.GetType(), "Popup", ""); 2009. 4. 3. 이전 1 ··· 6 7 8 9 10 11 다음