Default.aspx 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CG67.FicheCollege._Default" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 //EN"
  3. "http://www.w3.org/TR/html4/strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" >
  5. <head runat="server">
  6. <meta http-equiv="X-UA-Compatible" content="IE=9" />
  7. <title>Fiche de synthèse collège</title>
  8. <link href="css/fichecollege.css" rel="stylesheet" type="text/css" />
  9. <link href="css/Print.css" rel="stylesheet" type="text/css" />
  10. <script type="text/javascript">
  11. var _gaq = _gaq || [];
  12. _gaq.push(['_setAccount', 'UA-6108365-9']);
  13. _gaq.push(['_setDomainName', '.cg67.fr']);
  14. _gaq.push(['_trackPageview']);
  15. (function() {
  16. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  17. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  18. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  19. })();
  20. </script>
  21. </head>
  22. <body id="Default">
  23. <form id="form1" runat="server">
  24. <div id="header_index">
  25. <img id="logo" src="images/bandeau-fiche-college.png" alt="Logo du CD67"></img>
  26. </div>
  27. <div id="blank"><h3>Veuillez sélectionner un établissement</h3></div>
  28. <asp:DropDownList ID="ddlChoixCollege" runat="server" DataSourceID="ObjectDataSource1" DataTextField="NomCollegePourPresentation" DataValueField="CodeRNE">
  29. </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
  30. SelectMethod="GetAllEtablissement" TypeName="CG67.FicheCollege.Service.ServiceFiche">
  31. </asp:ObjectDataSource>
  32. <br />
  33. <br />
  34. <asp:Button ID="btnGeneration" runat="server" OnClick="Button1Click" Text="Générer la fiche" />
  35. </form>
  36. </body>
  37. </html>