================================把此部分编译为abc.dll
namespace HooQi.cn
{
public class WebForm1 : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Label Label1;
protected System.Web.UI.WebControls.Button Button1;

public void Button1_Click(object sender, System.EventArgs e)
{
this.Label1.Text="123";
}
}
}
================================ 这是页面文件
<%@ Page language="c#" AutoEventWireup="false" Inherits="HooQi.cn.WebForm1" %>
<form id="Form1" method="post" runat="server">
<asp:Button id="Button1"  runat="server" Text="Button"></asp:Button>
<asp:Label id="Label1"  runat="server">Label</asp:Label>
</form>
===============================
Web.config我没有配置,运行之后,点击按钮没有反应???我刚刚看了一篇文章 <从aspx文件到DLL文件之高级应用>
上面讲的是把CS编译完成之后 在ASpx里调用DLL里面的类 还需要在Web.config 里面有配置,具体怎么配置啊?