Why does my control inserted in the root not fire postback?

HelenaG Grulichova asked on April 10, 2012 01:35

Why does my control inserted in the root not fire postback?

Correct Answer

HelenaG Grulichova answered on April 10, 2012 01:35

This is typical for IIS 7 version and form controls which should do the postback. The solution is simple: you need to add/modify the following code to your web.config file:

<system.webServer>
   ...
<httpErrors existingResponse="PassThrough" />
<modules runAllManagedModulesForAllRequests="true">  
...
</system.webServer>


Links to other resources: IIS 7 configuration
-it-
0 votesVote for this answer Unmark Correct answer

   Please, sign in to be able to submit a new answer.