我对此进行了广泛的搜索,但找不到问题的解决方案。我正试图从页面上的用户控件调用页面代码背后的函数。
我有一个使用母版页的web应用程序。我正在向其中一个内容页面添加我编写的用户控件。我通过从工具箱中拖放用户控件将其添加到aspx页面。我可以从后面的代码中看到用户控件,但我无法访问公共函数。为了解决这个问题,我在代码后面创建了一个用户控件的对象,并使用了LoadControl函数。所有这些似乎都很有效。
我遇到的问题是,当我试图将从aspx页面挂钩到用户控件的EventHandler时。一切编译和运行都很好,但我没有看到页面上发生任何事情。我认为问题在于EventHandler始终为null。
用户控制码
public partial class ucBuyerList : System.Web.UI.UserControl
{
public delegate void BuyerSelectedEventHandler(object sender, EventArgs e);
public event BuyerSelectedEventHandler BuyerSelected;
private string name = "";
public string Name
{
get { return name; }
set { name = value; }
}
private string auid = "";
public string AUID
{
get { return auid; }
set { auid = value; }
}
protected void Page_Load(object sender, EventArgs e)
{
}
private void OnBuyerSelected(EventArgs e)
{
if (BuyerSelected != null)
{
BuyerSelected(this, new EventArgs());
}
}
protected void lbBuyerList_SelectedIndexChanged(object sender, EventArgs e)
{
SetNameAndAUID();
OnBuyerSelected(e);
}
private void SetNameAndAUID()
{
name = lbBuyerList.SelectedItem.Text;
auid = lbBuyerList.SelectedItem.Value;
}
}
父页面代码
public partial class frmBuyerInformation : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Master.changePageTitle("Buyer Information");
buyerList.BuyerSelected += new ucBuyerList.BuyerSelectedEventHandler(buyerListControl_BuyerSelected);
}
void buyerListControl_BuyerSelected(object sender, EventArgs e)
{
DisplayBuyerInformation();
}
public void DisplayBuyerInformation()
{
tbName.Text = buyerList.Name;
tbAUID.Text = buyerList.AUID;
}
}
有人看到我做错了什么吗?
编辑:此问题已解决。上面的代码剪切点现在可以使用了。如果有人遇到我遇到的问题,你可以对上面的代码进行建模。确保aspx和ascx页面中都有AutoEventWireup="true"
。感谢June Paik的解决方案。感谢Diego De Vita的投入。
我也一直在与事件作斗争。现在我总是用这种方式创作,因为这是我唯一知道的方法。还没有用你的代码测试过它,但它还是在这里:
public partial class ucBuyerList : System.Web.UI.UserControl
{
public delegate void BuyerSelectedEventHandler(object sender, EventArgs e);
public event BuyerSelectedEventHandler BuyerSelected;
public string Name;
public string AUID;
protected void Page_Load(object sender, EventArgs e)
{
//Select the first buyer in the list when the user control loads
if (!IsPostBack)
{
lbBuyerList.SelectedIndex = 0;
}
}
private void OnBuyerSelected(EventArgs e)
{
BuyerSelectedEventHandler handler = BuyerSelected;
if (handler != null)
{
handler(this, new EventArgs());
}
}
protected void lbBuyerList_SelectedIndexChanged(object sender, EventArgs e)
{
Name = lbBuyerList.SelectedItem.Text;
AUID = lbBuyerList.SelectedItem.Value;
OnBuyerSelected(e);
}
}
在父页面中,您可以使用与当前相同的方式调用函数。
Page_Load
在页面生命周期中可能为时已晚,无法使用LoadControl并订阅事件。如果将代码移动到Page_Init
方法,会发生什么情况?