2 using System
.Web
.UI
.WebControls
;
3 using Igloo
.Clinic
.Application
;
4 using Castle
.Igloo
.UI
.Web
;
6 namespace Igloo
.Clinic
.Web
.Views
9 /// Description résumée de MyUserControl.
11 public class MyUserControl
: UserControl
13 protected Button GoToPage2
;
14 private LoginController _homeController
= null;
16 public LoginController AccountController
20 _homeController
= value;
24 private void Page_Load(object sender
, EventArgs e
)
28 private void GoToPage2_Click(object sender
, EventArgs e
)
30 //this.State["toto"] = "fdfsdfdsf";
31 //(this.State as MyApplicationState).SomeSessionString = "SomeSessionString";
32 _homeController
.Validate("ggg","jjj");
35 #region Code généré par le Concepteur Web Form
36 override protected void OnInit(EventArgs e
)
39 // CODEGEN : Cet appel est requis par le Concepteur Web Form ASP.NET.
41 InitializeComponent();
46 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
47 /// le contenu de cette méthode avec l'éditeur de code.
49 private void InitializeComponent()
51 this.GoToPage2
.Click
+= new EventHandler(this.GoToPage2_Click
);
52 this.Load
+= new EventHandler(this.Page_Load
);