Could any one recommand a free windows based bug tracking system, We don’t want to keep our bug repository online we want to keep a localized copy. Thanks Best of Luck
hasan_shan
Posts
-
Bug tracking system -
Bug Tracking SystemCould any one recommand a free windows based bug tracking system, We don’t want to keep our bug repository online we want to keep a localized copy. Thanks Best of Luck
-
Book RecommendationThanks for your recommendation. Best of Luck
-
Book RecommendationHi, Could anyone recommend a book on Design Patterns covering all major aspects. Thanks Best of Luck -- modified at 12:15 Monday 13th March, 2006
-
Design PatternHi, Could anyone recommend a book on Design Patterns covering all major aspects. Thanks Best of Luck
-
'Could not access CDO.Message object'I am using the code below to send the email, but the problem is that when I am working locally (localhost) using the client smtpserver, username and password, it is working fine but when I built the project and upload files and DLL on the ftpserver. And test the project on internet it throws message 'Could not access CDO.Message object'. Can anyone help in this regard. objMailmessage.From = Request["email"]; objMailmessage.To = "asd@veri.com"; objMailmessage.Subject = "Brochure Request"; objMailmessage.Body= strMailbody; objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", smptserver); objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", 25); objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", 2); objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", 1); objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername", username); objMailmessage.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", password); try { SmtpMail.Send(objMailmessage); } catch(System.Web.HttpException ehttp) { lblerror.Text=ehttp.Message; } Best of Luck