3

I'm using AjaxPro & AjaxControlToolkit in my project. My project is normally running on Server 2003 with IIS 6. But when i loaded my project on Server 2008, i'm getting "AjaxPro undefined" error. My project is working .Net Framework 4.0 Classic mode.

I tried this but my project isn't working still.

ismailperim
  • 1,522
  • 2
  • 16
  • 24

1 Answers1

6

I found this code on web and tried this;

<location path="ajaxpro">
    <system.webServer>
       <handlers>
           <add name="*.ashx_*" path="*.ashx" verb="*" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2" preCondition="integratedMode,runtimeVersionv2.0"/>
       </handlers>
     </system.webServer>
</location>

and it works normally on IIS 7 & Server 2008 & .Net Framework 4.0 & Classic Mode.

Dai Bok
  • 3,451
  • 2
  • 53
  • 70
ismailperim
  • 1,522
  • 2
  • 16
  • 24