Imports System.Web.Mail ... error

  • Thread starter Thread starter Carlos
  • Start date Start date
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
 
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.
 
* "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..." -> ...).
 
Back
Top