如果建立的是web site
那么
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
CodeFile="Default.aspx.cs"
Inherits 这里只有类名,原因是.cs文件里面默认没有名称空间

如果建立的是web application
那么
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>
CodeBehind="Default.aspx.cs"
Inherits="WebApplication1._Default" 这里就有名称空间
vs2005和vs2008默认建立web site和web application 生成的webform源码的一点区别namespace WebApplication1

最主要的区别就是codebehind和codefile。不知道原因是什么。



相关文章: