自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(21)
  • 收藏
  • 关注

转载 asp.net mvc 3 RTM发布

asp.net mvc 3已于2011-1-13日发布!下载地址:http://download.microsoft.com/download/3/4/A/34A8A203-BD4B-44A2-AF8B-CA2CFCB311...

2011-01-13 23:02:23 135

转载 .NET 4.0框架中的新类: Lazy<T>

.NET 4.0里,在System名称空间中多了一个名为Lazy新泛型类,该类的作用正如其名称所示。下面给出了一个使用的例子:var lazy = new Lazy>( ...

2009-11-12 10:33:12 221

转载 XMLHttpRequests规范文档

XMLHttpRequestW3C Working Draft 20 August 2009This Version:http://www.w3.org/TR/2009/WD-XMLHttpRequest-20090820/La...

2009-10-30 12:41:26 382

转载 介绍 IIS 7.5 的应用程序集区与新增的「虚拟账户」特性

一篇比较详细探讨IIS 7.5下面账户安全的文章,值得学习一下。原文链接:http://blog.miniasp.com/post/2009/09/Introduce-IIS-75-Application-Pool-Ident...

2009-10-30 08:56:09 169

转载 C# 4.0中dynamic的用法

C# 4.0中dynamic的用法C# 4.0引入了一个新类型:dynamic,它是一个静态类型,然而该类型的对象实例却能够绕过静态类型检查的过程。在大多数情况下,该类型像object类那...

2009-05-21 14:44:53 251

转载 在同一应用中混合使用ASP.NET窗体和ASP.NET MVC

在同一应用中混合使用ASP.NET窗体和ASP.NET MVC不是所有的ASP.NET MVC Web应用程序都需要从头创建,也许您希望将现有的ASP.NET应用移植到ASP.NET MVC。在同一个应用同时使用ASP....

2009-05-18 17:32:22 152

转载 ASP.NET MVC最佳实践(3)

3.在Global.asax中使用引导程序(Bootstrapper)如果您在global.asax的Application_Start方法中执行过多的任务(例如配置Ioc/DI、注册路由、模型绑定器、视图引擎、启动应用相关的后...

2009-04-14 09:00:39 133

转载 ASP.NET MVC最佳实践(2)

2.创建UrlHelper的扩展方法(extension method)来映射您的JavaScript, Stylesheet以及Image文件夹默认情况下ASP.NET MVC会创建Content, Scripts文件夹来存放...

2009-04-13 08:55:58 127

转载 ASP.NET MVC最佳实践(1)

1.创建UrlHelper类的扩展方法,生成相对路径URL请避免将控制器、行为、或者路由名称作为字符串到处传递,创建UrlHelper的扩展方法来封装它们,例如:1. public static c...

2009-04-10 14:04:11 112

转载 ASP.NET MVC futures: 局部视图

在CodePlex站点中,有一个ASP.NET MVC Futures项目。它被封装在一个单独的Microsoft.Web.Mvc.dll中。该dll中包含很多有趣的特性,其中一个就是HtmlHelper的Render...

2009-04-10 13:16:51 102

转载 ASP.NET MVC futures: MVC控件概述

ASP.NET MVC框架中包含了一些预定义的HTML helper,可以起到简化输出HTML标记的效果,例如,其中的Html.TextBox helper方法就有以下4个重载形式:str...

2009-04-09 21:33:31 96

转载 ASP.NET MVC Unleashed (6) (续)

Creating Custom HTML HelpersThe ASP.NET MVC framework ships with a limited number of HTML helpers. The members of ...

2009-03-21 20:20:15 286

转载 Silverlight 3 Beta 1发布

Silverlight 3 Beta 1发布下载:http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=d09b6ecf...

2009-03-18 23:27:53 135

转载 ASP.NET MVC 1.0 正式发布

ASP.NET MVC 1.0已正式发布下载:http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=53289097-7...

2009-03-18 23:12:04 123

转载 ASP.NET MVC Unleashed (4)

Chapter 4 - Understanding ViewsThe set of views in an ASP.NET MVC application is the public face of the ...

2009-03-09 15:09:31 170

转载 ASP.NET MVC Unleashed (3) (续)

Controlling How Actions are InvokedThe default algorithm for how the ASP.NET MVC framework invokes ...

2009-03-06 14:05:15 167

转载 ASP.NET MVC RC 2 发布

ASP.NET MVC RC2已发布下载:http://www.microsoft.com/downloads/details.aspx?FamilyID=ee4b2e97-8a72-449a-82d2-2f...

2009-03-04 17:28:49 108

转载 ASP.NET MVC Unleashed (2) (续)

Creating the ViewsAn MVC view contains all of the HTML markup and view logic required to gener...

2009-03-03 20:52:54 149

转载 ASP.NET MVC Unleashed (2)

Chapter 2 - Building a Simple ASP.NET MVC ApplicationIn the previous chapter, we discussed all of ...

2009-03-01 21:49:06 148

转载 ASP.NET MVC Unleashed (1) (续)

Test Driven DevelopmentIn the previous section, we discussed the importance of ...

2009-02-26 13:17:13 317

转载 ASP.NET MVC Unleashed (1)

第1章 - ASP.NET MVC简介“除了变化外,没有什么是永久的。 ” -赫拉克利特In this chapter, you are provided with an overview and intro...

2009-02-25 10:22:39 223

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除