Imports System.Web.Mail ... error

C

Carlos

I'm using VS 2003, im trying to write a windows app that will send an emial
bt when I import the Imports System.Web.Mail give me an error, it finds
Imports System.Web but not the mail part any ideas ?

Imports System.Web
Imports System.Web.Mail ' This one can't find it



Thanks

Carlos
 
A

Armin Zingler

Carlos said:
I'm using VS 2003, im trying to write a windows app that will send an
emial bt when I import the Imports System.Web.Mail give me an error,
it finds Imports System.Web but not the mail part any ideas ?

Imports System.Web
Imports System.Web.Mail ' This one can't find it

You did not reference a library containing the namespace System.Web.Mail. At
the bottom of the documentation of the class you want to use there is the
assembly containing the class.
 
H

Herfried K. Wagner [MVP]

* "Carlos said:
I'm using VS 2003, im trying to write a windows app that will send an emial
bt when I import the Imports System.Web.Mail give me an error, it finds
Imports System.Web but not the mail part any ideas ?

Imports System.Web
Imports System.Web.Mail ' This one can't find it

Add a reference to "System.Web.dll" (project explorer -> "References" ->
context menu "Add Reference..." -> ...).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top