您好我有一个asp页面,其中包含以下语句
@IBAction func didPressGetPinsButton(sender: UIButton) {
if self.fetchingMore == false && self.currentResponseObject.hasNext() {
self.fetchingMore = true
self.currentResponseObject.loadNextWithSuccess({ (nextResponseObject :PDKResponseObject!) -> Void in
self.fetchingMore = false
self.currentResponseObject = nextResponseObject
guard let unwrappedArrayOfPins = nextResponseObject.pins() as? [PDKPin] else {return}
for pin in unwrappedArrayOfPins {
pins.append(pin)
}
当我尝试在IIS 8.5下运行此页面时,它显示如下 我的ASP页面 错误'8002801c'
/test.asp第7行
我使用的是32位启用的.Net 2.0 Classic应用程序池。 我正在努力摆脱这个错误。对此的任何帮助都将受到高度赞赏。
答案 0 :(得分:0)
我能够通过将应用程序池32位标志设置为false来解决此问题。