May Roadshow Content Available
We've collected the slides and content from our most recent Roadshow and have made them available at:
https://www.arcStreamEast.net/arcStreamEast/Download/zips/BandC-May2007.zip
Covered sessions are:
- XML and the Database
- What's New from the Patterns & Practices Group?
- Silverlight
- ASP.NET AJAX - Going Deeper
I'm on the road at the moment, but keep an eye out for follow-up posts with resources relating to questions I received during the various days.
-Chris
Comments
Anonymous
May 31, 2007
Chris: The AJAX demo seemed really slick but upon trying to put up a progress animated GIF on first load of the page it did not seem as easy as the demo you had. Can you put up a link to the demo code so that we can compare what we are doing to what you did? thanks I did not find the demo code in the Ajax roadshow content. thanksAnonymous
June 01, 2007
Hi Dave, Here's he boiled-down essence of what you need to have for the UpdateProgress control: <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Button" /> </ContentTemplate> </asp:UpdatePanel> <asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID="UpdatePanel1"> <ProgressTemplate> <span>Please wait...</span>. </ProgressTemplate> </asp:UpdateProgress> I recommend you take a look at this "How To" video which shows the process of working with UpdateProgress controls: http://www.asp.net/learn/videos/view.aspx?tabid=63&id=123 Thanks, Chris