.net 4.0 - Problem with HttpHandlers in a asp.net 4 integrated mode hosted at arvixe.com -


i'd know if has experienced issues httphandlers @ arvixe hosting provider.

i have set web site running in asp.net 4 integrated mode, httphandlers set correctly web.config , work in windows 7 iis7 pc.

on hosting space httphandlers don't seem work.

maybe has custom httphandlers working in .net 4 on arvixe? if so, can know how set them?

thanks

i had same problem , found needed add handler registration system.webserver. this:

<handlers>  <add name=".jpg" path="*.jpg" verb="get" type="imagehandler.httpimagehandler" resourcetype="unspecified" precondition="integratedmode" />  </handlers> 

hope (if not late ;-)).


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -