Server object error 'ASP 0177 : 800401f3' Server.CreateObject Failed

后端 未结 3 1489
半阙折子戏
半阙折子戏 2021-01-12 15:31

I\'m using Classic ASP.

Set theForm = Server.CreateObject(\"Persits.Upload\")
theForm.OverwriteFiles = True

Running the above code produces

3条回答
  •  萌比男神i
    2021-01-12 16:15

    Unregister the Persits Upload DLL and re-register it by using regsvr32. below are the steps to register and unregister the DLL

    Registering a DLL

    regsvr32 .dll
    

    or

    regsvr32 \.dll
    

    where is the path to the file, and is the name of the file.

    Unregistering a DLL

    regsvr32 -u .dll
    

    or

    regsvr32 -u \.dll
    

提交回复
热议问题