본문 바로가기

개발/ASP.NET MVC4

ASP.NET 비동기 프로그래밍 바로 가기 2011. 12. 24.
ASP.NET MVC Razor View Helper Extentions '@' 이를 이용한 Razor 문법을 이용하여 아이템 리스트 출력 때 발생하는 반복적인 foreach 문을 제거하고 디자인 영역을 자유롭게 표현하기 위해 delegate 문법을 이용한 확장 메소드입니다. public static class RazorExtentions { public static HelperResult List(this IEnumerable items, Func tempalte) { return new HelperResult(writer => { foreach (var item in items) { tempalte(item).WriteTo(writer); } }); } public static HelperResult List(this IEnumerable items, Func tempal.. 2011. 12. 18.
IIS6 에서 html 을 iframe 으로 로딩할 때 System.Web.Mvc.dll 을 찾지 못한다는 에러..... 이유는 아직도 못찾고 있다. 다만, System.Web.Mvc.dll는 기본적으로 gac에 등록되어 있지 않은데 이것을 강제로 등록해주면 해결된다. gacutil.exe /i System.Web.Mvc.dll (gacutil.exe를 복사해서 사용할 때 gacutil.exe.config 파일을 갖이 챙기는 걸 잊지 말자!!!) 2011. 3. 11.
[RAZOR] API ASP.NET API Quick Reference This page contains a list with brief examples of the most commonly used objects, properties, and methods for programming ASP.NET Web Pages with Razor syntax. For API reference documentation, see the ASP.NET Web Pages Reference Documentation on MSDN. « Previous Tutorial | Next Tutorial » This appendix contains reference information for the following: Classes Data Helpe.. 2011. 2. 13.