Code: Select all
protected void Page_Load(object sender, EventArgs e)
{
_GlobalDisablePurchase = Token.Instance.Store.Settings.ProductPurchasingDisabled;
if (!string.IsNullOrEmpty(this.Caption)) CaptionLabel.Text = this.Caption;
ProductList.RepeatColumns = this.Columns;
pager=AlwaysConvert.ToInt(Request.QueryString["p"]);////////////////////
ProductList.DataSource = ProductDataSource.LoadForStore(200,200* pager);//////////////////////
ProductList.DataBind();
}
Code: Select all
<asp:HyperLink ID="nextlink" runat="server" NavigateUrl='<%# getnextpageurl()%>'>Next</asp:HyperLink>
Anyone know how to do this? Maybe Im just not formatting my hyperlink properly. Any advice appreciated.