Esempio n. 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         _presenter = new UserRolePresenter(this);
         _userid = Request["fguid"];
         string user = Request["value"];
         if (!string.IsNullOrEmpty(user))
         {
             userinfo.InnerText = user;
         }
         _presenter.Init();
     }
 }