Reputation: 191
The following statement will not work with a classic asp page on an IIS7 website
<% Response.Write("test") %>
Upvotes: 0
Views: 1425
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