S
socket
Unregistered / Unconfirmed
GUEST, unregistred user!
下面是我的asp.net的源代码
<%@ Page Language="C#" %>
<script runat="server">
void bit_okClick(Object source,EventArgs e)
{
HNamespace.HelloWorld h = new Helloworld() ;
Label1.Text = h.SampleMethod() ;
}
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Button id="bit_ok" onclick="bit_okClick" runat="server" Text="ok"></asp:Button>
<asp:Label id="Label1" runat="server"></asp:Label>
</form>
</body>
</html>
其中Helloworld类是在HNamespace的名空间中,我怎样在我的asp.net代码中使用Helloworld这个类,像我上面那样使用会报错"找不到HNamespace这个命名空间"
<%@ Page Language="C#" %>
<script runat="server">
void bit_okClick(Object source,EventArgs e)
{
HNamespace.HelloWorld h = new Helloworld() ;
Label1.Text = h.SampleMethod() ;
}
</script>
<html>
<head>
</head>
<body>
<form runat="server">
<asp:Button id="bit_ok" onclick="bit_okClick" runat="server" Text="ok"></asp:Button>
<asp:Label id="Label1" runat="server"></asp:Label>
</form>
</body>
</html>
其中Helloworld类是在HNamespace的名空间中,我怎样在我的asp.net代码中使用Helloworld这个类,像我上面那样使用会报错"找不到HNamespace这个命名空间"