虽然我有
,但我的datalist的ItemDataBound事件没有被调用AutoEventWireup="true"
在aspx页面的标题和中我调用了databind()
中的page_load
方法,这是aspx页面中的数据列表:
<asp:DataList ID="dl" runat="server" OnItemDataBound="dl_ItemDataBound">
这是page_load
:
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
{
if (Request.QueryString["id"] == null)
Response.Redirect("~/default.aspx");
dl.DataBind();
}
}