Search

You searched for the word(s): userid:717485

Matching Posts

  • Re: Sys.Application is null or not an object

    Hi everyone, I found this same problem in my application. I tried the fix shown above but it didn't resolve the problem. Then I followed the instructions to create a blank website project and line-by-line compare the web.config file with my broken one. The error was in fact in the document's root tag. Here was the error: Broken File: <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> Corrected File: <configuration> Apparently it had something
  • Re: Client-side update request for UpdatePanel, can it be done?

    There's an easier way to do this. Let's say you have an UpdatePanel control called MyUpdatePanel. Now, an UpdatePanel control has no events, but the client web browser doesn't know that. You can pretend that an event fired using __doPostBack as follows: __doPostBack( '<%=MyUpdatePanel.ClientID%>' , 'customPostback' ); The client-side Javascript interface will happily generate a postback for you and tell the server that the 'customPostback' event fired. The server will skim through its list
    Posted to ASP.NET AJAX UI (Forum) by glassware on 5/2/2007
Page 1 of 1 (2 items)