Asp.net中的代码与表现分离

类别:.NET开发 点击:0 评论:0 推荐:

 .NET Framework Version 2.0出来好久了,VS 2005 beta2也有了,近段时间一直在断断续续地玩Asp.net,发现刚学不久的东西马上就得更新,不更新还真不行。

先从Asp.net中的代码与表现分离说起,这是一个非常有用的功能,特别是在team work中,我想。

在 .NET Framework Version 1.0/1.1中,微软是这么教我们代码与表现分离的:
1、首先要在.aspx文件的@Page指令中加入如下一行:
<%@ Page Language="vb" AutoEventWireup="false" Codebehind="SamplePage.aspx.vb" Inherits="SampleProject.SamplePage"%>
*注:这里的Codebehind属性换成Src属性亦可
2、在使用后台代码文件时,也就是.vb文件时,必须在后台代码中为表现文件内使用的每个控件声明实例,可以如下声明:
Protected WithEvents lblMessage As Label
忘了可不行,浏览器会告诉你“the name "lblMessage is not declared”!
按照MSDN上的原话是这样讲的:
The code-behind class is a complete class definition; it contains instance variables for all controls on the page, explicit event binding using delegates, and so on.


以上都是以前的事了,说说现在的情况。
在.NET Framework Version 2.0中,微软告诉我们以前这样实现代码与表现分离太麻烦了,兄弟,现在我们可以这样来实现它:
1、在.aspx文件的@Page指令还是要写的,不过改成这样子写:
<%@ page language="VB" compilewith="SamplePage.aspx.vb" classname="SamplePage_aspx" %>
用compilewith属性来替换codebehind和src属性,这越来越多的属性,我想应该是为了向后兼容付出的必要代价吧,classname指明后台文件所使用的类。
2、使用后台代码文件时,不必为表现文件内使用的每个控件声明实例,这里微软takes advantage of a new language feature known as partial classes.
The code-behind file for a page is not a complete class definition. Instead, it includes only the application code you need, such as event handlers. The code-behind partial class does not need to include instance variables or explicit event binding. ASP.NET can infer the control instances and derive event bindings from the markup during compilation.


这样一来确实减少些代码,在VS2005中微软声称可以减少70%的代码,我暂且学到这里,不知道还有没有其它减少代码的地方。

本文地址:http://com.8s8s.com/it/it42074.htm