素感养生
您的当前位置:首页asp.net网页里面为什么找不到CS文件

asp.net网页里面为什么找不到CS文件

来源:素感养生


代码如下:

<%@ Page language="c#" Codebehind="Main.aspx.cs" AutoEventWireup="false" Inherits="Hr.WebForm1" %>

上边的这行不要用CodeBehind,这是生成CS文件生成DLL文件后,把Dll放到Bin目录中使用的.
如果没有编译cs文件,则改为
代码如下:

<%@ Page language="c#" Src="Main.aspx.cs" AutoEventWireup="false" Inherits="Hr.WebForm1" %>
显示全文