Installed IIS for Windows 10 and all appears to have gone well, created an application pool for Classic ASP, enabled 32 bit processing and set the .NET CLR version to No Managed Code. Loaded a test page with Response.Write and things seemed okay.
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Hello ASP</title></head><body><p>Default Site - Testing ASP Classic</p><% Response.Write("<p>testing Response.Write Hello World</p>") %></body></html>
Then I added a second Response.Write with the Date() function and I get an internal error.
<% Response.Write("<p>The current date is: “ + Date() + “</p>") %>
Not really sure what to do next. Researched things on the web but no luck in getting this to work. Any help would be greatly appreciated. Thanks.