Default.aspx 1.2 KB

123456789101112131415161718192021222324
  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. </head>
  7. <body>
  8. <form id="form1" runat="server">
  9. <div>
  10. <asp:Label ID="lblChoix" runat="server" Text="Veuillez sélectionner un établissement"></asp:Label><br />
  11. <asp:DropDownList ID="ddlChoixCollege" runat="server" DataSourceID="ObjectDataSource1" DataTextField="NomCollegePourPresentation" DataValueField="CodeRNE">
  12. </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
  13. SelectMethod="GetAllEtablissement" TypeName="CG67.FicheCollege.Service.ServiceFiche">
  14. </asp:ObjectDataSource>
  15. &nbsp;<br />
  16. </div>
  17. &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  18. &nbsp;
  19. <asp:Button ID="btnGeneration" runat="server" OnClick="Button1Click" Text="Générer la fiche" />
  20. </form>
  21. </body>
  22. </html>