Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Experiments / Castle.Igloo / Igloo.Clinic.Web / Views / MyUserControl.ascx.cs
blobaf7d539b1c50fc21dc5146e1bbe3fa82ccd60893
1 using System;
2 using System.Web.UI.WebControls;
3 using Igloo.Clinic.Application;
4 using Castle.Igloo.UI.Web;
6 namespace Igloo.Clinic.Web.Views
8 /// <summary>
9 /// Description résumée de MyUserControl.
10 /// </summary>
11 public class MyUserControl : UserControl
13 protected Button GoToPage2;
14 private LoginController _homeController = null;
16 public LoginController AccountController
18 set
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();
42 base.OnInit(e);
45 /// <summary>
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.
48 /// </summary>
49 private void InitializeComponent()
51 this.GoToPage2.Click += new EventHandler(this.GoToPage2_Click);
52 this.Load += new EventHandler(this.Page_Load);
55 #endregion