Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Ajax Help: UpdateProgress Does Not Show on Production

Status
Not open for further replies.

jkb17

Programmer
Nov 27, 2000
156
US
Hello,

I have implemented and tested (successfully) an asp.net ajax enabled web site\page. When you click a button, a graphic is show (progress bar image) then it disappears when done.

This works fine on my local development machine but not in production. THe page loads (no errors) but it is not rendering th UpdateProgress's image during the click event of the button.

Any ideas = thanks?
 
is the image on the server?
if so does the <img src=""> match the location of the image on the server?

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Yep, I checked that first and image was there on the server.

Thanks for that quick response.
 
Found my solution so I'm going to post to the board for future reference.

I found the following article on asp.net :


The post at the very end (I'll copy & paste the snippet) helped. It was adding appropriate httphandlers to the web.config file:

It is as follows:

Please add following section to web config's to system.web node Good Luck

<httpHandlers>
<remove verb="*" path="*.asmx"/>

<add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

<add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>

Veeresh Hiremath
MCP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top