| 12345678910111213141516171819202122232425262728293031323334353637 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="FicheCollege.aspx.cs"
- Inherits="CG67.FicheCollege.FicheCollege" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
- "http://www.w3.org/TR/html4/strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="X-UA-Compatible" content="IE=9" />
- <title>Fiche collège</title>
- <link href="css/fichecollege.css" rel="stylesheet" type="text/css" />
- <link href="css/Print.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-6108365-9']);
- _gaq.push(['_setDomainName', '.cg67.fr']);
- _gaq.push(['_trackPageview']);
- (function () {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:Xml ID="Xml1" runat="server" TransformSource="~/xslt/FicheCollege.xslt"></asp:Xml></div>
- <asp:GridView ID="gvExcel" runat="server" DataSourceID="xmlDataSourceExcel">
- <HeaderStyle BackColor="Gray" />
- </asp:GridView>
- <asp:XmlDataSource ID="xmlDataSourceExcel" runat="server" TransformFile="~/xslt/FicheCollege.xslt">
- </asp:XmlDataSource>
- <WebPartPages:AllowFraming run="server" />
- </form>
- </body>
- </html>
|