~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/admin/.svn/text-base/ListFooter.ascx.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<%@ Control Language="c#" AutoEventWireup="false" Codebehind="ListFooter.ascx.cs" Inherits="Novell.iFolderWeb.Admin.ListFooter" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
2
 
 
3
 
<table class="footertable" cellpadding="0" cellspacing="0" border="0">
4
 
 
5
 
        <tr>
6
 
                <td class="leftfooter">
7
 
                        <asp:ImageButton 
8
 
                                ID="PageFirstButton" 
9
 
                                Runat="server" 
10
 
                                Visible="False" 
11
 
                                ImageUrl="images/go-first.png"/>
12
 
                                
13
 
                        <asp:ImageButton 
14
 
                                ID="PagePreviousButton" 
15
 
                                Runat="server" 
16
 
                                Visible="False" 
17
 
                                ImageUrl="images/go-previous.png"/>
18
 
                                
19
 
                        <asp:Image 
20
 
                                ID="PageFirstDisabledButton" 
21
 
                                Runat="server" 
22
 
                                Visible="True" 
23
 
                                ImageUrl="images/go-first-gray.png"/>
24
 
                                
25
 
                        <asp:Image 
26
 
                                ID="PagePreviousDisabledButton" 
27
 
                                Runat="server" 
28
 
                                Visible="True" 
29
 
                                ImageUrl="images/go-previous-gray.png"/>
30
 
                </td>
31
 
                
32
 
                <td class="centerfooter">
33
 
                        <asp:Label ID="PageText" Runat="server"/>
34
 
                </td>
35
 
                
36
 
                <td class="rightfooter">
37
 
                        <asp:ImageButton 
38
 
                                ID="PageNextButton" 
39
 
                                Runat="server" 
40
 
                                Visible="True" 
41
 
                                ImageUrl="images/go-next.png"/>
42
 
                                
43
 
                        <asp:ImageButton 
44
 
                                ID="PageLastButton" 
45
 
                                Runat="server" 
46
 
                                Visible="True" 
47
 
                                ImageUrl="images/go-last.png"/>
48
 
                                
49
 
                        <asp:Image 
50
 
                                ID="PageNextDisabledButton" 
51
 
                                Runat="server" 
52
 
                                Visible="False" 
53
 
                                ImageUrl="images/go-next-gray.png"/>
54
 
                                
55
 
                        <asp:Image 
56
 
                                ID="PageLastDisabledButton" 
57
 
                                Runat="server" 
58
 
                                Visible="False" 
59
 
                                ImageUrl="images/go-last-gray.png"/>
60
 
                </td>
61
 
        </tr>
62
 
        
63
 
</table>