where does UpdateProgress goes

Last post 08-22-2008 5:16 AM by DBMaster. 17 replies.

Sort Posts:

  • where does UpdateProgress goes

    10-21-2006, 10:29 AM
    • Loading...
    • effun
    • Joined on 10-21-2006, 2:23 PM
    • QZ, Zhejiang, China
    • Posts 8

    I have just installed ajax 1.0 beta on my computer. But I counld not find the control "UpdateProgess" after creating an ajax enabled web site. What should I do?

    Thanks. I am just a begginer to AJAX.

    asp.net begginer so far.
    Filed under:
  • Re: where does UpdateProgress goes

    10-21-2006, 1:25 PM
    Answer
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,218

    hello.

    you must download the value-added bits from the download section of the ajax site and install it before getting access to those controls.

    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    PT blog: http://weblogs.pontonetpt.com/luisabreu
    EN blog:http://msmvps.com/blogs/luisabreu
    http://www.pontonetpt.com
    http://weblogs.pontonetpt.com/
  • Re: where does UpdateProgress goes

    10-21-2006, 3:41 PM
    • Loading...
    • traic
    • Joined on 10-21-2006, 5:56 PM
    • Posts 1
    Thanks for your help on this, but I wasn't able to find the value-added bits... any insite to which download it is?
  • Re: where does UpdateProgress goes

    10-21-2006, 5:03 PM
    Answer
    • Loading...
    • jodywbcb
    • Joined on 03-12-2003, 3:52 PM
    • West Seattle,WA
    • Posts 985
  • Re: where does UpdateProgress goes

    10-21-2006, 8:03 PM
    • Loading...
    • effun
    • Joined on 10-21-2006, 2:23 PM
    • QZ, Zhejiang, China
    • Posts 8

    Thank you. The problem was sovled.

    But I was so confused. What different between CTP and beta release? Why does these features not include in beta version? Which version should I use?

    asp.net begginer so far.
  • Re: where does UpdateProgress goes

    10-21-2006, 8:17 PM
    • Loading...
    • simone_b
    • Joined on 12-11-2004, 8:51 AM
    • Italia
    • Posts 69
    The CTP (Value Add) features aren't included in the Beta release because they are subject to change in the next releases, so they are kept separate from the official release. You should read this document which explains in detail the differences between the previous July CTP and the actual release: Changes between the ASP.NET AJAX ("Atlas") CTP and the v1.0 Beta/RTM Release
  • Re: where does UpdateProgress goes

    10-21-2006, 8:20 PM
    • Loading...
    • jodywbcb
    • Joined on 03-12-2003, 3:52 PM
    • West Seattle,WA
    • Posts 985

    Well,not speaking directly for Microsoft.... the reasons why certain features (such as that you desired)... is that they are not ready to be rolled into the final release.  The CTP version of 'value add' are aditional features that are in progress but noit yet 'stable' enough to be included into a RTM or official release.  As the whole process goes forward and the kinks are all worked out the odds are they all be integrated but at this time with it being all BETA - MSFT made the right decision as it being what we would consider a 'supplemental' inclusion...

     

     

    -- jody
    My Blogs on .Net 2.0 and Ajax
    http://csk.wbcb.com
    http://ArtbyJody.com
  • Re: where does UpdateProgress goes

    10-21-2006, 8:28 PM
    • Loading...
    • effun
    • Joined on 10-21-2006, 2:23 PM
    • QZ, Zhejiang, China
    • Posts 8
    Thank you very much!
    asp.net begginer so far.
  • Re: where does UpdateProgress goes

    10-25-2006, 5:58 PM
    Answer
    • Loading...
    • Dr.NETjes
    • Joined on 02-13-2004, 2:39 PM
    • Posts 71

    It's easy to build your own UpdateProgress panel, just by using the core ASP.NET Ajax extentions beta 1
    (this example is taken from the ASP.NET Ajax documentation on page http://ajax.asp.net/docs/ClientReference/Sys.WebForms/PageRequestManagerClass.aspx)

    Assuming you have a scriptmanager on your page, an updatepanel and an html DIV-element (named 'myUpdatePanel' with style='visibility:hidden;').  'myUpdatePanel' contains the text/image you want to show when the UpdatePanel is waiting to update itself.

    <script type="text/javascript" language="javascript">
     
    Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(BeginRequestHandler);
      Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler)

     
    function BeginRequestHandler(sender, args)
      {
        ActivateAlertDiv(
    'visible', 'myUpdatePanel');
      }

      function EndRequestHandler(sender, args)
      {
        ActivateAlertDiv(
    'hidden', 'myUpdatePanel');
      }

      function ActivateAlertDiv(visstring, elem)
      {
       
    var adiv = $get(elem);
       
    adiv.style.visibility = visstring;
      }
    </script>

  • Re: where does UpdateProgress goes

    10-26-2006, 10:07 AM
    • Loading...
    • gman341
    • Joined on 12-02-2005, 4:10 PM
    • Posts 9
    Good stuff Dr.NETjes! Just to clarify, this javascript should go after your scriptmanager.
  • Re: where does UpdateProgress goes

    10-28-2006, 2:59 AM
    • Loading...
    • effun
    • Joined on 10-21-2006, 2:23 PM
    • QZ, Zhejiang, China
    • Posts 8

    thanks to Dr.NETjes.

    but i am not familiar with javascript. what does "$get()" stand for?

    asp.net begginer so far.
  • Re: where does UpdateProgress goes

    10-28-2006, 5:48 AM
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,218
    $get is a shortcut methof for document.getElementById...
    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    PT blog: http://weblogs.pontonetpt.com/luisabreu
    EN blog:http://msmvps.com/blogs/luisabreu
    http://www.pontonetpt.com
    http://weblogs.pontonetpt.com/
  • Re: where does UpdateProgress goes

    10-31-2006, 4:07 PM
    I'm just curious.  How is $get parsed?  I didn't know the dollar sign was a legal Javascript operator.
  • Re: where does UpdateProgress goes

    10-31-2006, 5:35 PM
    • Loading...
    • Luis Abreu
    • Joined on 02-12-2005, 6:22 AM
    • Madeira [Portugal]
    • Posts 5,218

    hello.

    well, it seems like it is  

    --
    Regards,
    Luis Abreu
    email: labreu_at_gmail.com
    PT blog: http://weblogs.pontonetpt.com/luisabreu
    EN blog:http://msmvps.com/blogs/luisabreu
    http://www.pontonetpt.com
    http://weblogs.pontonetpt.com/
  • Re: where does UpdateProgress goes

    11-07-2006, 4:12 AM
    • Loading...
    • nelsonliu92
    • Joined on 11-07-2006, 9:07 AM
    • Posts 1

    I already download and install it, but i still can't see UpdateProgress Control in my toolbox of VS2005 IDE.

    Can you help me how to do?

Page 1 of 2 (18 items) 1 2 Next >