system.web.mail

  • Thread starter Thread starter Greg Chu
  • Start date Start date
G

Greg Chu

Hi, I created a console applicaton and try to import system.web.mail. But I
do not see it. after system.web I can only see 3 choices for
AspNetHosting.....

But I downloaded a sample console app. from the web and I do not have any
problem.

Any idea what am I doing wrong?

Thanks!
Greg
 
Console applications don't have a reference to System.Web... You will need to
add this reference yourself.

To add the System.Web DLL:

Click the PROJECT menu & navigate to ADD REFERENCES

Find 'System.Web' DLL, double-click it & click OK

Now, your 'Imports System.Web.Mail' at the top will not be showing the
underline anymore.

I hope this helps.
 

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