|
|
#1 |
|
Member
Join Date: Dec 06
Posts: 40
![]() |
Hi there does nayone know how to add a footer to a mobile form. I need a back button to appear on all pages created by a lists pagnateion(pager). I need a button to appear on all paged pages allowing to go back to the first page.
Anyone know hoe to do this I was told a footer template for the form would do this. Hope somone can help lee |
|
|
|
|
|
#2 |
|
Hick
Join Date: Mar 05
Location: US of A
Posts: 2,325
![]() ![]() ![]() ![]() |
Re: Header/Footer Templates
Here's a simple example:
The data grid Code:
<asp:DataGrid ID="DataGrid1" runat="server" AllowPaging="True" AutoGenerateColumns="False"
PageSize="5" ShowFooter="True">
<Columns>
<asp:TemplateColumn HeaderText="My Column">
<ItemTemplate>
<%#Container.DataItem("myColumn")%>
</ItemTemplate>
<FooterTemplate>
<asp:Button ID="btnPage1" runat=server OnClick="btnPage1_Click" Text="Page 1" />
</FooterTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid>
VB Code:
|
|
|
|
![]() |
|
||||||
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|