我有一种情况需要在c#asp.net中为单个.aspx页面创建多个代码。实际上我有一个网络表格,完成了巨大的编码,我需要多个开发人员同时处理它。我怎样才能实现同样的目标?
以下是我试过的代码段
Class 1 MyPartialClass.cs
namespace WebApplication1
{
public partial class Default : System.Web.UI.Page
{
protected void PrintText(string pt)
{
Response.Write(pt);
//lblTest.Text = pt; //Can not access this label in partial class.
}
}
}
Class 2,即Default.aspx.cs
namespace WebApplication1
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
PrintText("Hello World");
}
}
}
和我的HTML源代码
<%@ Page Language="C#" AutoEventWireup="false" CodeBehind="Default.aspx.cs" Inherits="WebApplication1.Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="lblTest" runat="server"></asp:Label>
</div>
</form>
</body>
</html>
答案 0 :(得分:4)
ASP.NET总是会将文件后面的代码生成为部分类
namespace WebApplication1
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
}
如果您将定义定义为partial
并将该类保留在同一名称空间下,则可以将不同文件中的代码分开。
修改:Web项目
//Default.aspx
<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeBehind="Default.aspx.cs" Inherits="WebApplication1.Default" %>
<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:Label ID="lblTest" runat="server" Text="Label"></asp:Label>
</asp:Content>
//Default.aspx.cs
namespace WebApplication1
{
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
PrintText("Hello World");
}
}
}
//MyPartialClass.cs
namespace WebApplication1
{
public partial class Default
{
protected void PrintText(string pt)
{
Response.Write(pt);
lblTest.Text = pt; //lblTest is accessible here
}
}
}
我还没有修改任何其他生成的文件。我要提到的一件事是,生成的Default.aspx.cs
文件是使用类名&#34; _Default&#34;生成的。我已将其更改为Default
,并且Visual Studio重构了包含该类定义的所有文件的更改,但Default.aspx
文件除外,我必须手动修改Inherits="WebApplication1._Default"
到{ {1}}。
编辑2:
我一直在网上搜索,根据http://codeverge.com/asp.net.web-forms/partial-classes-for-code-behind/371053,你要做的事情是不可能的。同样的想法详见http://codeverge.com/asp.net.web-forms/using-partial-classes-to-have-multiple-code/377575 如果可能,请考虑从Web站点转换为Web应用程序,它支持您尝试实现的目标。以下是有关如何执行此转换的演练:http://msdn.microsoft.com/en-us/library/vstudio/aa983476(v=vs.100).aspx
答案 1 :(得分:2)
您需要像Team Foundation Server一样设置源安全服务器。
答案 2 :(得分:1)