asp classic - asp page will not render on 2012 web server -


i moving old applications on new server , receiving 500 error, iis log having below:

2015-03-20 20:24:28 192.168.28.131 /test.asp |33|asp_0177_:_800401f3|server.createobject_failed 80 - ip address mozilla/5.0+(windows+nt+6.3;+wow64;+trident/7.0;+rv:11.0)+like+gecko - 500 0 0 0

here environment:

  • the test server windows 2012 r2
  • iis - version 8.5
  • i have asp.net web site running. (this rules out turn windows features on or off).
  • the new web site pointing default app pool (for now).

i tested see if code, not case:

  • i created file called test.html says "hello". if browse url page comes fine.
  • if rename test.html file test.asp, error occurs.

i tried below basic .asp script, same error

<!doctype html> <html> <body>  <% response.write("hello world!") %>  </body> </html> 

thanks in advance.

are sure you've enabled classic asp on iis? server role has installed, because on default isn't on iis 8.5. in server manager go iis roles , add asp in development tab. install , should work!


Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -