system.web.mail

wsyeager

Well-known member
Joined
Apr 10, 2003
Messages
140
Location
Weston, FL
Im using VS.Net 2003 with the 1.1 dot net framework...

Im trying to use the imports statement: Imports system.web.mail

However, no further node comes up after "system.web".........

I was able to use this namespace without a problem in the 1.0 framework with vs 2002.

How come I cant see the namespace?

I need to send mail from within my asp.net pages.........
 
You need to add reference to the System.Web assembly in your solution explorer. Right click your project and click add references and look for System.Web.
 
Originally posted by mutant
You need to add reference to the System.Web assembly in your solution explorer. Right click your project and click add references and look for System.Web.

Thanks a lot! I was able to successully import the namespace...:D
 
Back
Top