为了减少代码冗余,应将公共函数写在类中,供不同ASP.NET页面调用。
1,先新建一个类,并在类中添加函数逻辑
namespace public_function_demo
{
public class MyFunction
{
public static string tbName(string tbNo)
{
if (tbNo == "510101")
{ return "3GPP 51.010-1"; }
else
{
return "3GPP 51.010-4";
}
}
}
}
2,在目标程序中引用刚才创建类的namespace,调用自定义的函数
ASP.NET前台
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>

本文介绍如何在ASP.NET中通过创建类来实现公共函数,以便于在多个页面间复用代码,减少冗余。内容涵盖新建类及在类中定义函数逻辑的步骤。
最低0.47元/天 解锁文章
516

被折叠的 条评论
为什么被折叠?



