Default.aspx 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ Page Language="C#" %>
  2. <%@ Register TagPrefix="Samples" Namespace="SampleControl" Assembly="SystemWebExtensionsAUT" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  4. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <script runat="server">
  6. </script>
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head runat="server">
  9. <title>ScriptReference</title>
  10. </head>
  11. <body>
  12. <form id="form1" runat="server">
  13. <div>
  14. <asp:ScriptManager ID="ScriptManager1"
  15. EnablePartialRendering="True"
  16. runat="server">
  17. <Scripts>
  18. <asp:ScriptReference Path="scripts/UpdatePanelAnimation.js" />
  19. </Scripts>
  20. </asp:ScriptManager>
  21. <Samples:UpdatePanelAnimationWithClientResource
  22. ID="UpdatePanelAnimator1"
  23. BorderColor="Green"
  24. Animate="true"
  25. UpdatePanelID="UpdatePanel1"
  26. runat="server" >
  27. </Samples:UpdatePanelAnimationWithClientResource>
  28. <asp:UpdatePanel ID="UpdatePanel1"
  29. UpdateMode="Conditional"
  30. runat="server">
  31. <ContentTemplate>
  32. <asp:Calendar ID="Calendar2"
  33. runat="server">
  34. </asp:Calendar>
  35. </ContentTemplate>
  36. </asp:UpdatePanel>
  37. </div>
  38. </form>
  39. </body>
  40. </html>