Search

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

Matching Posts

  • Re: Status Updates w/AJAX

    I've gone through the article and I'm still not able to get this panel to do what I want. I'll assume that its not possible and maybe re-visit this at another time depending on the projects I'm working. Taffy
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/26/2008
  • Re: Status Updates w/AJAX

    Hey Gary, Yes, the problem is that when you're just starting out using AJAX, you're not sure if what you're doing can be done or is being done properly. Anyway, I have the ScriptManager. I'm using VS 2005 with AJAX. I still should be able to run this with VS 2005, right. The server SHOULD update the screen immediately, but the text does not show until all the methods have ended, then the text shows. I'm only starting to use AJAX, so maybe I'm not doing something right that
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/23/2008
  • Re: How to detect if Ajax Extensions is installed

    These two links were good GAC references, but I got nothing out of them regarding testing for AJAX. Readers, try this link as well: http://msdn.microsoft.com/en-us/library/bb907614.aspx
  • Re: Status Updates w/AJAX

    Ok, I went in and added the directive and it still is not working. Also, I went here http://msdn.microsoft.com/en-us/library/bb907614.aspx and my project tested correctly. Let me make sure I'm correct here. If I call a series of methods: Method1() Method2() Method3() Method4() I should be able to make a call to a label within my UpdatePanel that will allow for the user to see, for example: Method1() lblStatus.Text = "Sometext"; MyPanel.Update() //user see the message while the next
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/23/2008
  • Re: Status Updates w/AJAX

    Well, the process takes a little more then 1:00 minute and I've stepped through the code but the text does not appear until after the final code completes. I have not put the " <% @ Register assembly ="AjaxControlToolkit" namespace ="AjaxControlToolkit" tagprefix ="cc1" %>" at the top of the page. This is an ajax enabled project and I was not aware that I needed to apply the directive on the page. Maybe that is it. I will apply the directive and try
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/22/2008
  • Re: UpdatePanel not working

    I think one of the reasons you're not getting an answer to the post is that this is a complicated control. You may want to try not using this control at all but try using Javascript instead.
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/22/2008
  • Re: Update Panel client side life cycle

    I too have been trying to pick this UpdatePane up, not having a fun time :( For those in my position looking around and trying to learn, this link no longer works! Taffy
  • Re: Is it possible to modify ajax-rendered UpdatePanel content after it was rendered?

    I would not be surprised if this quesiton goes un-answered. This control seems to be very tricky!
  • Re: UpdatePanel Postback

    This UpdatePanel is very tricky and can be complicated. Try not using it at all to solve your solution.
  • Re: Status Updates w/AJAX

    My guess is you're writing I could do something like this. < asp : UpdatePanel ID ="UpdateUser" runat ="server" UpdateMode ="Conditional"> < ContentTemplate > < asp : Label ID ="lblStatus" runat ="server" Width ="146px"></ asp : Label > </ ContentTemplate > </ asp : UpdatePanel > Then in code I would write something like: lblStatus.Text = "What ever!"; UpdateUser.update(); then the user would
    Posted to ASP.NET AJAX UI (Forum) by TaffyLewis on 12/22/2008
Page 1 of 8 (80 items) 1 2 3 4 5 Next > ... Last »