|
 |
aspx thread: COM in VB.NET
Message #1 by "Betti Alessandro" <betti@t...> on Thu, 4 Jan 2001 10:56:23 -0000
|
|
I'm confused... Someone can explain me How can i use the
NameSpace in Vb.NET ?
The correct is
Namespace pippo
Public class Pluto
Public function Papero(something)
end Function
end Class
end Namespace
AND
vbc /t:library ex........
To Compile
AND
<%@Import Namespace="pippo" %>
FOR IMPORT INTO A PAGE ASPX ,IS IT ?
Thanks
Betti Alessandro
---
http://www.asptoday.com - the leading site for timely,
in-depth information for ASP developers everywhere.
---
You are currently subscribed to aspx as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-aspx-$subst('Recip.MemberIDChar')@p2p.wrox.com
Message #2 by Scott Guthrie <scottgu@m...> on Sun, 7 Jan 2001 20:54:33 -0800
|
|
Hi Betti,
This is correct -- do import a namespace into an ASP.NET page use:
<%@ Import Namespace="Pippo" %>
Note that you can have multiple import statements within a file.
Thanks,
Scott
----------------------------------------------------------------------------
---------
Visit http://www.asp.net for the latest ASP.NET Information
-----Original Message-----
From: Betti Alessandro [mailto:betti@t...]
Sent: Thursday, January 04, 2001 2:56 AM
To: ASP+
Subject: [aspx] COM in VB.NET
I'm confused... Someone can explain me How can i use the
NameSpace in Vb.NET ?
The correct is
Namespace pippo
Public class Pluto
Public function Papero(something)
end Function
end Class
end Namespace
AND
vbc /t:library ex........
To Compile
AND
<%@Import Namespace="pippo" %>
FOR IMPORT INTO A PAGE ASPX ,IS IT ?
Thanks
Betti Alessandro
---
http://www.asptoday.com - the leading site for timely,
in-depth information for ASP developers everywhere.
---
You are currently subscribed to aspx as: $subst('Recip.EmailAddr')
To unsubscribe send a blank email to leave-aspx-$subst('Recip.MemberIDChar')@p2p.wrox.com
|
|
 |