I have a C# program that is using some COM objects available through a tool installed on the machine (Waters Empower 3). Initially when I made the calls I received errors about un-registred classes so I registered the dlls that I am using. Now I get the error below. System.Runtime.InteropServices.COMException [...] read more
Trying to change URLs from: http://blah/ReportServer to: http://blah/ReportServer/Foo Error: Microsoft.ReportingServices.WmiProvider.WMIProviderException: The virtual directory specified is not valid. Make sure the specified name is not too long and doesn't contain illegal characters. (example: ;) ---> System.Runtime.InteropServices.COMException (0x8004020D): Cannot modify or delete an object that was not added using the COM+ Admin [...] read more
I am creating a contact form for customers to type info in the form and submit an email to us. Also, my hosting package is under Go Daddy. I used the following code as a test and it worked. MailMessage oMail = new System.Web.Mail.MailMessage(); oMail.Subject = "Subject", oMail.Body oMail.From = [...] read more