mp42871
mp42871

Reputation: 191

Response.write with classic ASP page on IIS7

The following statement will not work with a classic asp page on an IIS7 website

<% Response.Write("test") %>

Upvotes: 0

Views: 1425

Answers (2)

mp42871
mp42871

Reputation: 191

I figured out that it had to do with adding a handler mapping for server side includes. When I added a module mapping ServerSideIncludeModule with request path of *.asp, it broke my site.

Upvotes: 0

jdecuyper
jdecuyper

Reputation: 3963

Have you enabled ASP inside Windows features?

enter image description here

Upvotes: 3

Related Questions