System.Web.Mail namespace

  • Thread starter Thread starter Merlynx
  • Start date Start date
M

Merlynx

This namespace is not found when i try to import it. I have the .NET
Framework 1.1 installed :(
 
Merlynx,
Before you can import a namespace you need to reference the assembly.

Most (all?) of the classes in the System.Web.Mail namespace are located in
the System.Web.dll assembly.

You will need to include System.Web.dll in your references when you compile
your program.

To find out the assembly that needs to be referenced check the Assembly
entry in the Requirements section of the overview page for the Class
(Struct, Interface, Enum) on MSDN.

http://msdn.microsoft.com/library/d...l/frlrfSystemWebMailMailMessageClassTopic.asp

Hope this helps
Jay
 
Thanks :)

Jay B. Harlow said:
Merlynx,
Before you can import a namespace you need to reference the assembly.

Most (all?) of the classes in the System.Web.Mail namespace are located in
the System.Web.dll assembly.

You will need to include System.Web.dll in your references when you compile
your program.

To find out the assembly that needs to be referenced check the Assembly
entry in the Requirements section of the overview page for the Class
(Struct, Interface, Enum) on MSDN.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfSystemWebMailMailMessageClassTopic.asp

Hope this helps
Jay
 

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

Back
Top