Skip to content

Instantly share code, notes, and snippets.

@arviman
Created November 2, 2011 19:33
Show Gist options
  • Save arviman/1334645 to your computer and use it in GitHub Desktop.
Save arviman/1334645 to your computer and use it in GitHub Desktop.
<table>
<tr><td>
<asp:PlaceHolder ID="plcPaging" runat="server" >
<asp:LinkButton ID="prevLnk" Text = "Prev" runat="server" OnClick="prev_Click"/>
<asp:Label ID="prevspacer" Text = " " runat="server" />
<asp:LinkButton ID="lnkPage1" Text = "1" runat="server" OnClick="lnk_Click"/>
<asp:Label ID="spacer1" Text = " | " runat="server" />
<asp:LinkButton ID="lnkPage2" Text = "2" runat="server" OnClick="lnk_Click"/>
<asp:Label ID="spacer2" Text = " | " runat="server" />
<asp:LinkButton ID="lnkPage3" Text = "3" runat="server" OnClick="lnk_Click"/>
<asp:Label ID="spacer3" Text = " | " runat="server" />
<asp:LinkButton ID="lnkPage4" Text = "4" runat="server" OnClick="lnk_Click"/>
<asp:Label ID="spacer4" Text = " | " runat="server" />
<asp:LinkButton ID="nextLnk" Text = "Next" runat="server" OnClick="next_Click"/>
</asp:PlaceHolder>
</td></tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment