GenerationFiche.aspx.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. namespace CG67.FicheCollege
  12. {
  13. public partial class GenerationFiche : System.Web.UI.Page
  14. {
  15. protected void Page_Load(object sender, EventArgs e)
  16. {
  17. detailsViewFicheIdentiteCollege.DataBind();
  18. detailsViewStructureImmobiliere.DataBind();
  19. detailsViewSectorisation.DataBind();
  20. detailsViewInterventionDepartement.DataBind();
  21. detailsViewGestionATC.DataBind();
  22. gridViewActionEducatives.DataBind();
  23. grdViewProjetPilote.DataBind();
  24. detailsViewChiffresSignificatifs.DataBind();
  25. //Response.Write(HttpContext.Current.Session["RNE"].ToString());
  26. //Response.Write(HttpContext.Current.Session["Annee"].ToString());
  27. }
  28. protected void DetailsView2_PageIndexChanging(object sender, DetailsViewPageEventArgs e)
  29. {
  30. }
  31. protected void ObjectDataSourceDotation_Selecting(object sender, ObjectDataSourceSelectingEventArgs e)
  32. {
  33. }
  34. }
  35. }