Hello
I have a project built on docks. These docs are in a master page, here yo ucan see the structure:
As you can see I've split my page up into three columns. And all of my pages are using this theme. I get my page details from sql server than generate them from a BasePage control. Everything is working really great. But I've really got a big problem with paging parameters. I tried telerik's grid component it works fine. But when I try to use SEO Url mode it's not working. I mean when I click the page links the page just loads itself. Than I thought maybe something wrong with this, and I built another page with .net's ListView and DataPager control. But nothing has changed. I'm curious how this can happen? Here's my URL: Category.aspx?CatID=18&pageNumber=2 and here's my code behind.
Where am I missing? Is that because Dock or what? I really need help with this..
I have a project built on docks. These docs are in a master page, here yo ucan see the structure:
| <asp:UpdatePanel runat="server" ID="updatePanel"> |
| <ContentTemplate> |
| <cc1:DockLayout ID="dockLayout" runat="server" EnableViewState="false" StoreLayoutInViewState="false"> |
| <uc1:Header ID="ctrlHeader" runat="server" /> |
| <uc1:SubHeader ID="SubHeader1" runat="server" /> |
| <div class="leftpart"> |
| <div style="margin-top: 5px;"> |
| <uc1:Menu ID="Menu" runat="server" /> |
| </div> |
| <div style="margin-top: 5px;"> |
| <cc1:DockZone ID="LeftDocZone" runat="server" Orientation="Vertical" Visible="true"> |
| </cc1:DockZone> |
| </div> |
| </div> |
| <div class="midpart"> |
| <cc1:DockZone ID="CenterDockZone" runat="server" Orientation="Vertical"> |
| </cc1:DockZone> |
| </div> |
| <div class="rightpart"> |
| <cc1:DockZone ID="RightDockZone" runat="server" Orientation="Vertical"> |
| </cc1:DockZone> |
| </div> |
| </cc1:DockLayout> |
| </ContentTemplate> |
| </asp:UpdatePanel> |
| <div> |
| <uc1:Footer ID="Footer1" runat="server" /> |
| </div> |
As you can see I've split my page up into three columns. And all of my pages are using this theme. I get my page details from sql server than generate them from a BasePage control. Everything is working really great. But I've really got a big problem with paging parameters. I tried telerik's grid component it works fine. But when I try to use SEO Url mode it's not working. I mean when I click the page links the page just loads itself. Than I thought maybe something wrong with this, and I built another page with .net's ListView and DataPager control. But nothing has changed. I'm curious how this can happen? Here's my URL: Category.aspx?CatID=18&pageNumber=2 and here's my code behind.
| protected void Page_Load(object sender, EventArgs e) |
| { |
| PopulateSearchPanel(); |
| } |
| private void PopulateSearchPanel() |
| { |
| int catID = Convert.ToInt32(StringUtil.GetQueryString("CatID")); |
| List<ProductItem> products = ProductFactory.GetCategoryProducts(catID, 1); |
| itemCount = products.Count; |
| foreach (ProductItem p in products) |
| { |
| var productItem = new RadPanelItem(); |
| pproductItem.Text = p.ProductName; |
| productItem.NavigateUrl = "#"; |
| } |
| ProductsListView.DataSource = products; |
| ProductsListView.DataBind(); |
| } |
Where am I missing? Is that because Dock or what? I really need help with this..