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

 .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%的代码,我暂且学到这里,不知道还有没有其它减少代码的地方。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值