0

My application works in classic ASP. I'm getting the following error in "support" page after clicking the submit button.

Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed


    set Mailer=Server.CreateObject("SMTPsvg.Mailer")

I have limited knowledge about classic ASP. How to fix the issue?

Krish
  • 167
  • 1
  • 3
  • 16
  • The `CreateObject()` method is used to instantiate a COM object from an external DLL that is registered with COM via the Windows Registry. It uses what is own as the ProgId to identifier, in this case you should have a ProgId registered as "localhost" which seems a bit strange to me. You should [find this checklist helpful in identifying it](https://stackoverflow.com/a/35985827/692942). – user692942 Jun 25 '20 at 07:18
  • This may be one of those cases where it's better to tell us what you're trying to accomplish, so that we might tell you how to accomplish it – Stephen R Jun 25 '20 at 16:26
  • @Lankymart have to fix it without updating the DLL. Sorry for the delayed response. – Krish Jul 10 '20 at 13:59
  • @StephenR Have to send email using ASP classic. I have updated the question now with the specific code. Hope it gives you an idea. – Krish Jul 10 '20 at 14:01

0 Answers0