asp.net怎样调用web服务(10分)

  • 主题发起人 主题发起人 socket
  • 开始时间 开始时间
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这个命名空间"
 
void bit_okClick(Object source,EventArgs e)
{
HNamespace.HelloWorld h = new Helloworld() ;
Label1.Text = h.SampleMethod() ;
}
这段应该是脚本程序,不应该是c#程序,因此不能使用
 
@ Register 指令
 
多人接受答案了。
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
800
import
I
后退
顶部