Default.aspx 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CG67.FicheCollege._Default" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5. <title>Fiche de synthèse collège</title>
  6. <script type="text/javascript">
  7. var _gaq = _gaq || [];
  8. _gaq.push(['_setAccount', 'UA-6108365-9']);
  9. _gaq.push(['_setDomainName', '.cg67.fr']);
  10. _gaq.push(['_trackPageview']);
  11. (function() {
  12. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  13. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  14. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  15. })();
  16. </script>
  17. </head>
  18. <body>
  19. <form id="form1" runat="server">
  20. <div>
  21. <asp:Label ID="lblChoix" runat="server" Text="Veuillez sélectionner un établissement"></asp:Label><br />
  22. <asp:DropDownList ID="ddlChoixCollege" runat="server" DataSourceID="ObjectDataSource1" DataTextField="NomCollegePourPresentation" DataValueField="CodeRNE">
  23. </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
  24. SelectMethod="GetAllEtablissement" TypeName="CG67.FicheCollege.Service.ServiceFiche">
  25. </asp:ObjectDataSource>
  26. <br />
  27. </div>
  28. <br />
  29. <asp:Button ID="btnGeneration" runat="server" OnClick="Button1Click" Text="Générer la fiche" />
  30. </form>
  31. </body>
  32. </html>