FicheCollege.aspx 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FicheCollege.aspx.cs"
  2. Inherits="CG67.FicheCollege.FicheCollege" %>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
  4. "http://www.w3.org/TR/html4/strict.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <meta http-equiv="X-UA-Compatible" content="IE=9" />
  8. <title>Fiche collège</title>
  9. <link href="css/fichecollege.css" rel="stylesheet" type="text/css" />
  10. <link href="css/Print.css" rel="stylesheet" type="text/css" />
  11. <script type="text/javascript">
  12. var _gaq = _gaq || [];
  13. _gaq.push(['_setAccount', 'UA-6108365-9']);
  14. _gaq.push(['_setDomainName', '.cg67.fr']);
  15. _gaq.push(['_trackPageview']);
  16. _gaq.push(['_setCustomVar',
  17. 1, // This custom var is set to slot #1. Required parameter.
  18. 'Visitor', // The name acts as a kind of category for the user activity. Required parameter.
  19. '<%=user%>', // This value of the custom variable. Required parameter.
  20. 2 // Sets the scope to session-level. Optional parameter.
  21. ]);
  22. (function () {
  23. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  24. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  25. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  26. })();
  27. </script>
  28. <style media="print">
  29. #BtonRetour{display: none}
  30. </style>
  31. </head>
  32. <body>
  33. <a href="Default.aspx" id="BtonRetour">Retour au menu</a>
  34. <form id="form1" runat="server">
  35. <div>
  36. <asp:Xml ID="Xml1" runat="server" TransformSource="~/xslt/FicheCollege.xslt"></asp:Xml></div>
  37. <asp:GridView ID="gvExcel" runat="server" DataSourceID="xmlDataSourceExcel">
  38. <HeaderStyle BackColor="Gray" />
  39. </asp:GridView>
  40. <asp:XmlDataSource ID="xmlDataSourceExcel" runat="server" TransformFile="~/xslt/FicheCollege.xslt">
  41. </asp:XmlDataSource>
  42. <WebPartPages:AllowFraming run="server" />
  43. </form>
  44. </body>
  45. </html>