<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_AnyKoro_分类_Asp.net MVC about</title><id>http://feed.cnblogs.com/blog/u/53802/category/233915/rss</id><updated>2012-05-27T23:39:25Z</updated><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/category/233915.html"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/53802/category/233915/rss"/><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/11/11/1874559.html</id><title type="text">[转]Turn your Razor helpers into reusable libraries</title><summary type="text">The first blog post I ever wrote was titled “Turning an ascx user control into a redistributable custom control”. It was almost exactly five years ago, and it still gets a lot of hits toda...</summary><published>2010-11-11T01:10:00Z</published><updated>2010-11-11T01:10:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/11/11/1874559.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/11/11/1874559.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/11/06/1870563.html</id><title type="text">转 mvc3 webimages</title><summary type="text">在System.Web.Helpers.DLL中提供一个类：WebImage通过她可以方便的进行图片处理，她提供了对图片的切割、翻转、旋转、加文字水印或图片水印等功能。创建Asp.net mvc3网站项目。在Controller中添加如下代码：[代码]</summary><published>2010-11-06T06:39:00Z</published><updated>2010-11-06T06:39:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/11/06/1870563.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/11/06/1870563.html"/><content type="html"/></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/03/11/1683786.html</id><title type="text">Partial Requests in ASP.NET MVC</title><summary type="text">In your ASP.NET MVC application, it can be tricky to combine multiple independent “widgets” on the same page. That’s because a WebForms-style hierarchy of independent controls clashe...</summary><published>2010-03-11T13:26:00Z</published><updated>2010-03-11T13:26:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/11/1683786.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/11/1683786.html"/><content type="text">In your ASP.NET MVC application, it can be tricky to combine multiple independent “widgets” on the same page. That’s because a WebForms-style hierarchy of independent controls clashe...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/03/08/1680487.html</id><title type="text">[转]asp.net mvc 获取IP方法的扩展</title><summary type="text">asp.net mvc 获取IP方法的扩展1.扩展方法必须在非泛型静态类中定义2.扩展方法必须是静态的3.不能在静态类中声明实例成员public static class PubMethod { public static string GetIP(this Controller ctrl) { string ip; if (ctrl.HttpContext.Request.ServerVaria...</summary><published>2010-03-07T16:29:00Z</published><updated>2010-03-07T16:29:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/08/1680487.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/08/1680487.html"/><content type="text">asp.net mvc 获取IP方法的扩展1.扩展方法必须在非泛型静态类中定义2.扩展方法必须是静态的3.不能在静态类中声明实例成员public static class PubMethod { public static string GetIP(this Controller ctrl) { string ip; if (ctrl.HttpContext.Request.ServerVaria...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/03/07/1680005.html</id><title type="text">[转]验证MS关于DateTime的JSON表示</title><summary type="text">JSON有一个非常大的遗憾，就是对于DateTime类型没有进行相关的标准表示，于是MS为了解决此类问题，在Asp.net Ajax的实现中用\Date(tickets)\来表示日期时间，为了和表示日期时间的和类似于表示日期时间的数据取个开来，在传递的JSON字符串中 就是这样表示的，如：var jsonString='{"name":"James","birthday":"\\\/Date(10...</summary><published>2010-03-06T16:04:00Z</published><updated>2010-03-06T16:04:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/07/1680005.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/07/1680005.html"/><content type="text">JSON有一个非常大的遗憾，就是对于DateTime类型没有进行相关的标准表示，于是MS为了解决此类问题，在Asp.net Ajax的实现中用\Date(tickets)\来表示日期时间，为了和表示日期时间的和类似于表示日期时间的数据取个开来，在传递的JSON字符串中 就是这样表示的，如：var jsonString='{"name":"James","birthday":"\\\/Date(10...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/03/01/1675429.html</id><title type="text">Integrating Adobe Flex and .NET with ASP.NET MVC</title><summary type="text">There are a lot of tools out there to help you utilize .NET as a back-end for Flex applications. All of these solutions come with a heavy customization and implementation cost. I’ve used WebORB ...</summary><published>2010-03-01T02:04:00Z</published><updated>2010-03-01T02:04:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/01/1675429.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/03/01/1675429.html"/><content type="text">There are a lot of tools out there to help you utilize .NET as a back-end for Flex applications. All of these solutions come with a heavy customization and implementation cost. I’ve used WebORB ...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/27/1674635.html</id><title type="text">向mvc controller传递json数组</title><summary type="text">对于这个主题我没有找到最合适的办法，只是找出了个可以暂时规避问题的方法。发到这里非常希望各位大侠，能给小弟些思路解决此问题。一开始的需求本想实现这么一个功能这里的后台的程序这个是我最一开始的程序，刚一开始，发现整个程序怎么也不起作用（可以传到后台），一顿调试，发现时没有把json数据字符串化，后来使用了jqueryToJSON进行了字符串化，字符串化后，limit可以认出了，但是对于数组格式的li...</summary><published>2010-02-26T16:11:00Z</published><updated>2010-02-26T16:11:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/27/1674635.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/27/1674635.html"/><content type="text">对于这个主题我没有找到最合适的办法，只是找出了个可以暂时规避问题的方法。发到这里非常希望各位大侠，能给小弟些思路解决此问题。一开始的需求本想实现这么一个功能这里的后台的程序这个是我最一开始的程序，刚一开始，发现整个程序怎么也不起作用（可以传到后台），一顿调试，发现时没有把json数据字符串化，后来使用了jqueryToJSON进行了字符串化，字符串化后，limit可以认出了，但是对于数组格式的li...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/23/1671652.html</id><title type="text">ASP.NET MVC 2博客系列之一：强类型HTML辅助方法</title><summary type="text">【原文地址】ASP.NET MVC 2: Strongly Typed Html Helpers 【原文发表日期】 Sunday, January 10, 2010 8:57 PM 【除了写博客外，我现在还使用Twitter发短贴和共享链接。请通过twitter.com/scottgu跟随我。】 这是我针对即将发布的ASP.NET MVC 2所撰写的贴子系列的第一篇，这个博客贴子将讨论 ASP.N...</summary><published>2010-02-23T01:15:00Z</published><updated>2010-02-23T01:15:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/23/1671652.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/23/1671652.html"/><content type="text">【原文地址】ASP.NET MVC 2: Strongly Typed Html Helpers 【原文发表日期】 Sunday, January 10, 2010 8:57 PM 【除了写博客外，我现在还使用Twitter发短贴和共享链接。请通过twitter.com/scottgu跟随我。】 这是我针对即将发布的ASP.NET MVC 2所撰写的贴子系列的第一篇，这个博客贴子将讨论 ASP.N...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/22/1670839.html</id><title type="text">【转】ASP.net MVC自定义错误处理页面的方法</title><summary type="text">在ASP.NET MVC中,我们可以使用HandleErrorAttribute特性来具体指定如何处理Action抛出的异常.只要某个Action设置了HandleErrorAttribute特性,那么默认的,当这个Action抛出了异常时MVC将会显示Error视图,该视图位于~/Views/Shared目录下.设置HandleError属性可以通过设置下面这些属性来更改HandleEr...</summary><published>2010-02-22T00:43:00Z</published><updated>2010-02-22T00:43:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/22/1670839.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/22/1670839.html"/><content type="text">在ASP.NET MVC中,我们可以使用HandleErrorAttribute特性来具体指定如何处理Action抛出的异常.只要某个Action设置了HandleErrorAttribute特性,那么默认的,当这个Action抛出了异常时MVC将会显示Error视图,该视图位于~/Views/Shared目录下.设置HandleError属性可以通过设置下面这些属性来更改HandleEr...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670271.html</id><title type="text">Output caching in ASP.NET MVC application</title><summary type="text">Goal: Here, I am going to explain, how we can improve performance of ASP.Net MVC application using output caching. Advantage:It enables us to cache the content returned by Controller action.It stops c...</summary><published>2010-02-21T05:19:00Z</published><updated>2010-02-21T05:19:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670271.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670271.html"/><content type="text">Goal: Here, I am going to explain, how we can improve performance of ASP.Net MVC application using output caching. Advantage:It enables us to cache the content returned by Controller action.It stops c...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670112.html</id><title type="text">Sortable List using ASP.net MVC and jQuery</title><summary type="text">Sorting is one of the most basic and essential algorithm form the early days of computation, In this article we will be discussing about sorting a list of items in a web application, this is one of th...</summary><published>2010-02-21T02:28:00Z</published><updated>2010-02-21T02:28:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670112.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670112.html"/><content type="text">Sorting is one of the most basic and essential algorithm form the early days of computation, In this article we will be discussing about sorting a list of items in a web application, this is one of th...</content></entry><entry><id>http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670066.html</id><title type="text">MVC JSON - JsonResult and jQuery</title><summary type="text">The latest release of the MVC framework provides the JsonResult forController actions. I was surprised that I did not find a weatlh of examplesfor usage so I figured it shouldn't be too hard to get a ...</summary><published>2010-02-21T01:22:00Z</published><updated>2010-02-21T01:22:00Z</updated><author><name>AnyKoro</name><uri>http://www.cnblogs.com/JosephLiu/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670066.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JosephLiu/archive/2010/02/21/1670066.html"/><content type="text">The latest release of the MVC framework provides the JsonResult forController actions. I was surprised that I did not find a weatlh of examplesfor usage so I figured it shouldn't be too hard to get a ...</content></entry></feed>
