private void ShowData() { string id = Request["RoleId"]; if (!string.IsNullOrEmpty(id)) { UserRoleBll bll = new UserRoleBll(); UserRole model = bll.GetModel(Convert.ToInt32(id)); if (model != null) { this.txtRoleName.Text = model.RoleName; this.txtRoleDesc.Text = model.RoleDesc; } } }