FicheCollege.aspx 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. (function () {
  17. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  18. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  19. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  20. })();
  21. </script>
  22. <style media="print">
  23. #BtonRetour{display: none}
  24. </style>
  25. </head>
  26. <body>
  27. <a href="Default.aspx" id="BtonRetour">Retour au menu</a>
  28. <form id="form1" runat="server">
  29. <div>
  30. <asp:Xml ID="Xml1" runat="server" TransformSource="~/xslt/FicheCollege.xslt"></asp:Xml></div>
  31. <asp:GridView ID="gvExcel" runat="server" DataSourceID="xmlDataSourceExcel">
  32. <HeaderStyle BackColor="Gray" />
  33. </asp:GridView>
  34. <asp:XmlDataSource ID="xmlDataSourceExcel" runat="server" TransformFile="~/xslt/FicheCollege.xslt">
  35. </asp:XmlDataSource>
  36. <WebPartPages:AllowFraming run="server" />
  37. </form>
  38. </body>
  39. </html>