We've collected the slides and content from our most recent Roadshow and have made them available at:
http://www.arcStreamEast.net/arcStreamEast/Download/zips/BandC-May2007.zip
Covered sessions are:
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
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.
thanks
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
Development Technologies & Community, Microsoft, and the Northeast