该Page_Load
方法未执行。这是列表页面:
<a href="frm_Vacation_Edit.aspx?ApplyCode=<%#Eval("ProcessApplyCode")%>&VerCode=<%#Eval("ProcessVersion")%>">
<%# (this.AspNetPager1.CurrentPageIndex - 1) * this.AspNetPager1.PageSize + Container.DataItemIndex + 1%></a>
这是接收传输值的编辑页面
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
BandData();
}
}
但是该Page_Load
方法永远不会执行。这是缓存问题吗?