~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/webaccess/.svn/text-base/Settings.aspx.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
 
<%@ Page language="c#" Codebehind="Settings.aspx.cs" AutoEventWireup="false" Inherits="Novell.iFolderApp.Web.SettingsPage" %>
2
 
<%@ Register TagPrefix="iFolder" TagName="HeaderControl" Src="Header.ascx" %>
3
 
<%@ Register TagPrefix="iFolder" TagName="MessageControl" Src="Message.ascx" %>
4
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
5
 
<html>
6
 
 
7
 
<head>
8
 
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
9
 
        
10
 
        <title><%= GetString("TITLE") %></title>
11
 
        
12
 
        <link rel="SHORTCUT ICON" href="images/ifolder.ico">
13
 
 
14
 
        <style type="text/css">
15
 
                @import url(css/ifolder.css);
16
 
        </style>
17
 
 
18
 
</head>
19
 
 
20
 
<body>
21
 
 
22
 
<div id="container">
23
 
        
24
 
        <form runat="server">
25
 
 
26
 
                <iFolder:HeaderControl runat="server" />
27
 
                
28
 
                <div id="nav">
29
 
                </div>
30
 
        
31
 
                <div id="content">
32
 
                
33
 
                        <iFolder:MessageControl id="Message" runat="server" />
34
 
        
35
 
                        <div class="section">
36
 
                                <%= GetString("SETTINGS") %>
37
 
                        </div>
38
 
                        
39
 
                        <div class="main">
40
 
                                
41
 
                                <div>
42
 
                                        <asp:Label ID="PageSizeLabel" runat="server" />:
43
 
                                        <asp:DropDownList ID="PageSizeList" runat="server" />
44
 
                                </div>
45
 
                                
46
 
                                <br>
47
 
                                
48
 
                                <div class="buttons">
49
 
                                        <asp:Button ID="SaveButton" runat="server" />
50
 
                                        <asp:Button ID="CancelButton" runat="server" />
51
 
                                </div>
52
 
 
53
 
                        </div>
54
 
        
55
 
                </div>
56
 
        
57
 
        </form>
58
 
 
59
 
</div>
60
 
 
61
 
</body>
62
 
 
63
 
</html>