FicheCollege.aspx 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. </head>
  23. <body>
  24. <form id="form1" runat="server">
  25. <div>
  26. <asp:Xml ID="Xml1" runat="server" TransformSource="~/xslt/FicheCollege.xslt"></asp:Xml></div>
  27. <asp:GridView ID="gvExcel" runat="server" DataSourceID="xmlDataSourceExcel">
  28. <HeaderStyle BackColor="Gray" />
  29. </asp:GridView>
  30. <asp:XmlDataSource ID="xmlDataSourceExcel" runat="server" TransformFile="~/xslt/FicheCollege.xslt">
  31. </asp:XmlDataSource>
  32. <WebPartPages:AllowFraming run="server" />
  33. </form>
  34. </body>
  35. </html>