IIS restriction error for .aspx page, but .aspx unlimited

I recently tried installing TargetProcess http://www.targetprocess.com/ on my Windows computer, which is related to installing IIS and an instance of SQLEXPRESS.

I have no previous ones with IIS, so most of those concepts are new to me. After repeatedly scratching my head and mastering, I managed to install TargetProcess. However, when I try to run it in a browser, I get the following error:

The page you requested cannot be submitted due to the settings of the ISAPI and CGI Restriction list on the web server.

The page I'm trying to run is -.aspx, and I ran page.aspx to verify that .aspx is not limited, as suggested by the error message.

Anyone have any ideas on what else could be?

+3
source share
3 answers

Kevin

In the IIS management console, open the ISAPI and CGI Restrictions function for your hosting server. Limitations of ASP.NET v2.0 and v4.0 are set separately. TargetProcess application has been using .NET v4.0 since the build of 2.22.9, so please check that the MS.NET framework v4.0 is installed and ASP.NET v4.0 is enabled. Also on the "Handlers Handlers" tab for the TP website, WebHandlerFactory-ISAPI-4.0 should be enabled.

Please contact us through http://messenger.providesupport.com/messenger/targetprocess.html if you need help.

Regards, Alex - TargetPro

+4

:

1.- IIS ( localhosts)

2.- ASAPI CGI

3.- right clic, ALLOWED

+1

The "ISAPI and CGI Restrictions" option was missing on my machine. I had to go back to the Enable / Disable Windows features, then Internet Information Services / World Wide Web Services / Application Development Features, and then check the CGI option. As soon as I did this, the option "ISAPI and CGI Restrictions" appeared after closing and reopening IIS. Just mention it here if anyone else has a problem.

+1
source

All Articles