I have a user control which shows the list of users in other control. Turns out that button in the user control never receives a call back event. Creating small test project works fine with almost all code. After long testing I did managed to trace what's preventing from firing this button event. Turns out as soon as Istop assign users to the Gridview data source and also don't do data binding code just works!
Could anyone tell my why this happening and how to fix it?
Thanks
Main top user control NariuSarasas.ascx code with problem area:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
namespace WebGPS.Website.UserControls
{
public partial class NariuSarasas : System.Web.UI.UserControl
{
private const string SessionPageDataSource= "UserControlPageSource_Object_";
protected void Page_Load(object sender, EventArgs e)
{
}
public string LegendName
{
get {return lblLegendName.Text;}
set { lblLegendName.Text = value; }
}
public string LegendHeader
{
get { return lblLegendHeader.Text; }
set { lblLegendHeader.Text = value; }
}
public MembershipUserCollection GridDataSource
{
get { return GridView1.DataSource as MembershipUserCollection; }
set {
GridView1.DataSource = value;
// ** ISSUE HERE: PLEASE COMMENT OUT BELOW 2 LINES TO FIX
GridView1.DataBind();
Session[SessionPageDataSource + this.ClientID] = value;
}
}
public void RefreshData()
{
GridView1.DataBind();
}
public int RecordCount
{
get { return GridView1.Rows.Count; }
}
protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
GridView1.PageIndex = e.NewPageIndex;
if (Session[SessionPageDataSource + this.ClientID] != null)
GridView1.DataSource = Session[SessionPageDataSource + this.ClientID];
RefreshData();
}
}
}
markup:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="NariuSarasas.ascx.cs" Inherits="WebGPS.Website.UserControls.NariuSarasas" %>
<div class="WindowInfo">
<fieldset class="register">
<legend><asp:Label ID="lblLegendName" runat="server"></asp:Label></legend>
<h2>
<asp:Label ID="lblLegendHeader" runat="server"></asp:Label>
</h2>
<p>
</p>
<center>
<asp:GridView ID="GridView1" runat="server"
AllowSorting="True" AutoGenerateColumns="False"
EnableModelValidation="True" onpageindexchanging="GridView1_PageIndexChanging"
GridLines="None"
AllowPaging="true"
CssClass="mGrid"
PagerStyle-CssClass="pgr"
AlternatingRowStyle-CssClass="alt">
<Columns>
<asp:HyperLinkField DataNavigateUrlFields="UserName"
DataNavigateUrlFormatString="~/Narys/Adminas/Nariai/RedaguotiNari.aspx?User={0}" DataTextField="UserName"
HeaderText="UserName" />
<asp:BoundField DataField="Email" HeaderText="Email" />
<asp:BoundField DataField="PasswordQuestion" HeaderText="PasswordQuestion"
Visible="False" />
<asp:BoundField DataField="Comment" HeaderText="Comment" Visible="False" />
<asp:CheckBoxField DataField="IsApproved" HeaderText="Approved"
ReadOnly="True" />
<asp:CheckBoxField DataField="IsLockedOut" HeaderText="LockedOut"
ReadOnly="True" />
<asp:BoundField DataField="LastLockoutDate" HeaderText="LastLockoutDate"
Visible="False" />
<asp:BoundField DataField="CreationDate" HeaderText="CreationDate" />
<asp:BoundField DataField="LastLoginDate" HeaderText="LastLoginDate"
Visible="False" />
<asp:BoundField DataField="LastActivityDate" HeaderText="LastActivityDate"
Visible="False" />
<asp:BoundField DataField="LastPasswordChangedDate"
HeaderText="LastPasswordChangedDate" Visible="False" />
<asp:CheckBoxField DataField="IsOnline" HeaderText="IsOnline" />
</Columns>
</asp:GridView>
</center>
</fieldset>
</div>
Other user control "RolesRedaktoriu.ascx" code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Security;
namespace WebGPS.Website.UserControls
{
public partial class RolesRedaktorius : System.Web.UI.UserControl
{
public event EventHandler buttonDelete;
protected void Page_Load(object sender, EventArgs e)
{
}
public string RoleName
{
get { return txtRoleName.Value; }
set {
txtRoleName.Value = value;
NariuSarasas1.ID += RoleName;
}
}
public string LegendName
{
get { return NariuSarasas1.LegendName; }
set { NariuSarasas1.LegendName = value; }
}
public string LegendHeader
{
get { return NariuSarasas1.LegendHeader; }
set { NariuSarasas1.LegendHeader = value; }
}
public MembershipUserCollection GridDataSource
{
get { return NariuSarasas1.GridDataSource; }
set {
NariuSarasas1.GridDataSource = value;
btnDelete.Enabled = NariuSarasas1.RecordCount == 0 ? true : false;
}
}
public void RefreshData()
{
NariuSarasas1.RefreshData();
}
public int RecordCount
{
get { return NariuSarasas1.RecordCount; }
}
protected void btnDelete_Click(object sender, EventArgs e)
{
buttonDelete(sender, e);
}
protected void btnTest_Click(object sender, EventArgs e)
{
buttonDelete(sender, e);
}
}
}
Markup:
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="RolesRedaktorius.ascx.cs" Inherits="WebGPS.Website.UserControls.RolesRedaktorius" %>
<%@ Register src="~/UserControls/NariuSarasas.ascx" tagname="NariuSarasas" tagprefix="uc1" %>
<uc1:NariuSarasas ID="NariuSarasas1" runat="server" />
<div style="display:inline">
<asp:HiddenField ID="txtRoleName" runat="server" />
<div style="float:left">
<asp:Button ID="btnTest" runat="server" Text="Test" onclick="btnTest_Click" />
</div>
<div style="float:right">
<asp:Button ID="btnDelete" runat="server" Text="Pašalinti vaidmenį"
onclick="btnDelete_Click" CausesValidation="false" />
</div>
</div>
<p>
</p>
<br />
Page that contains this control code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Security = System.Web.Security;
using WebGPS.Website.UserControls;
namespace WebGPS.Website.Narys.Adminas.Vaidmenys
{
public partial class RoliuSarasas : System.Web.UI.Page
{
List<RolesRedaktorius> roleControlList;
protected void Page_Init(object sender, EventArgs e)
{
LoadRoles();
}
protected void Page_Load(object sender, EventArgs e)
{
if (roleControlList != null)
foreach (RolesRedaktorius roleCtr in roleControlList)
roleCtr.buttonDelete += new EventHandler(btnDeleteRole_Click);
}
private void LoadRoles()
{
Security.MembershipUserCollection usersAll = Security.Membership.GetAllUsers();
roleControlList = new List<RolesRedaktorius>();
string[] roles = Security.Roles.GetAllRoles();
foreach (string role in roles)
LoadRole(role, usersAll);
}
private void LoadRole(string rolename, Security.MembershipUserCollection usersAll)
{
Security.MembershipUserCollection users = new Security.MembershipUserCollection();
foreach (Security.MembershipUser member in usersAll)
if (Security.Roles.IsUserInRole(member.UserName, rolename))
users.Add(member);
RolesRedaktorius roleControl = (RolesRedaktorius)Page.LoadControl("~/UserControls/RolesRedaktorius.ascx"); ;
roleControl.Visible = true;
roleControl.ID = "roleEdit_" + rolename;
roleControl.RoleName = rolename;
roleControl.LegendName = "Rolių redaktorius - " + rolename;
roleControl.LegendHeader = "'" + rolename + "' rolės narių sąrašas";
roleControl.GridDataSource = users;
this.phRoles.Controls.Add(roleControl);
roleControlList.Add(roleControl);
}
private void btnDeleteRole_Click(object sender, EventArgs e)
{
Response.Write("<h1>ROLE: " + ((Button) sender).ClientID + " </h1>");
}
protected void btnCreateNewRole_Click(object sender, EventArgs e)
{
string returnUrl = "NaujaRole.aspx" + WebCommon.GetReturnUrlAsCurrentPageAsQueryString;
Response.Redirect(returnUrl, true);
}
}
}
markup part (without master page):
<asp:PlaceHolder ID="phRoles" runat="server">
</asp:PlaceHolder>