| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="CG67.FicheCollege._Default" %>
- <!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 de synthèse 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 id="Default">
- <form id="form1" runat="server">
- <div id="header_index">
- <img id="logo" src="images/bandeau-fiche-college.png" alt="Logo du CD67"></img>
- </div>
- <div id="blank"><h3>Veuillez sélectionner un établissement</h3></div>
-
- <asp:DropDownList ID="ddlChoixCollege" runat="server" DataSourceID="ObjectDataSource1" DataTextField="NomCollegePourPresentation" DataValueField="CodeRNE">
- </asp:DropDownList><asp:ObjectDataSource ID="ObjectDataSource1" runat="server" OldValuesParameterFormatString="original_{0}"
- SelectMethod="GetAllEtablissement" TypeName="CG67.FicheCollege.Service.ServiceFiche">
- </asp:ObjectDataSource>
- <br />
- <br />
- <asp:Button ID="btnGeneration" runat="server" OnClick="Button1Click" Text="Générer la fiche" />
- </form>
- </body>
- </html>
|