Hallo,
I have used many time the AddHandler method (becuse I'm
buildin an array of controls).
Now I 'd like to know if I have to use the
RemoveHandler method.
In fact I use the array of control till I close my app,
and I think that when my app close,
all the AddHandler are automatically...
more >>
I get the following message when the SmtpMail.Send command tries to execute:
An unhandled exception of type 'System.Web.HttpException' occurred in
system.web.dll
Additional information: Could not access 'CDO.Message' object.
I am running vb.net 2003 Academic on Windows XP Professional. A...
more >>
I am using the following code in .net 2:
MailAddress fromAddress = new MailAddress("valid_smtp_addr", "name");
MailMessage message = new MailMessage();
message.From = fromAddress;
message.To.Add(new MailAddress("someaddress@yahoo.com"));
message.Body = Body;
message.Subject = Subject;
messa...
more >>
I am looking for some code to access a passworded web site, navigate to a
page and display some information on that page
Thanks, Steve...
more >>