The call to Server.CreateObject failed while checking permissions. Access is denied to this object.
微软的知识库里说设置一下%ProgramFiles%\Common Files\System的权限:

Add Everyone to the existing permissions, give at least Read permissions to Everyone, and apply these new settings to all files and subfolders.
按此方法,增加Everyone读权限和修改的权限(一定都要?),错误消失,问题解决!对 Server.CreateObject 的调用失败。拒绝对此对象的访问 1、调用Server.CreateObject("Persits.Jpeg")的时候发生错误,解决如下:

   开始->运行->dcomcnfg

   找到"aspjpeg"(这个名称取决于你调用的Object是什么),然后右键->属性->安全 把读写权限都给everyone即可。

   2、也可以把aspjpeg.dll的读写权限赋给相关的用户。在aspjpeg.dll上右键--属性--安全----添加--高级--立即查找--添加users,默认读取、读取和运行权限即可。

   3、IIS里->目录安全性->编辑->匿名访问 去勾->确定后 可以访问了,然后再重新设置一遍,把匿名访问 加勾,以后就可以正常访问了。