본문 바로가기

programming/ASP.NET15

Create Dynamic GridView Control in C#/ASP.Net Introduction In my previous article, we have seen how to Create Dynamic DataList control in C#/ASP.Net. Moving forward, we will see the implementation of dynamic GridView in this article. .... 좀 길어서 Note This article is continuation of my previous article Create Dynamic DataList control in C#/ASP.Net. I suggest you to read that article to have clear understanding of this article. We will use the.. 2011. 3. 20.
Working with GridView without using Data Source Controls Introduction There are many articles and tutorials around that illustrate the use of GridView control along with the new Data Source Controls. When attached with a Data Source control GridView performs tasks such as paging, sorting and editing automatically i.e. without writing any code. However, at times you require to bind the GridView with a DataView or DataTable directly. Fortunately GridVie.. 2011. 3. 20.
asp.net에서 cs영역에서 alert호출 우선 원인을 설명드리자면, 클라이언트에서 실행되는 자바스크립트보다 서버단에 명령이 먼저 실행되기 때문이라고 보시면 됩니다. Page.ClientScript.RegisterStartupScript(GetType(), "alert", "alert('접수되었습니다.');", true); 위 코드에 의해서 alert()을 띄우는 스크립트가 생성이 되었고, 이 스크립트가 실행되려면 페이지가 모두 렌더링이 된 이후여야 하는데, 다 끝나기전에 Response.Redirect("CS_WRITE.aspx?bid="+bid, false); 위 코드로 Redirect를 시켜주기 때문에 스크립트 실행이 되지 않는 것입니다. 원하시는 기능을 구현하기 위해서는 아래 코드처럼 해주시면 됩니다. Page.ClientScript.Re.. 2011. 3. 18.
Custom Membership Provider 공급자 ASP.NET 2.0 에서는 많은 공급자(Provider)들을 제공해주고 있습니다. 실제 개발을 하면서 이를 이용한 개발에 노하우를 가지고 있는 분들은 이곳저곳에서 질문을 해보니 많이 안계시더군뇨. 특히 회원정보입력등에 MembershipProvider 나 Role Provider 같은 경우는 확장을 하여 사용하면 많은 이로움도 있을것 같은데 ..... 자료는 별로 없습니다. 좋은 동영상 강좌링크를 올립니다. 아래 강력추천이라고 해놓은 MSDN 강좌는 찾아본 자료중 최고입니다. 소스와 강좌 모두 최고입니다. 군더더기 없이 깔끔합니다. 다운받아서 꼭 저장해 놓으세요 [Custom Membership Provider] http://www.asp.net/learn/videos/video-189.aspx 2011. 3. 18.