<%@ LANGUAGE=VBScript %> <% Option Explicit %> <% Response.Expires = 0 %> <% if Session("FONTSIZE") = "" then %> <% else %> <% Const L_PREVBACKUPS_TEXT = "Previous Backups" Const L_BACKUPNAME_TEXT = "Name" Const L_BACKUPDATE_TEXT = "Date" Const L_NUM_TEXT = "#" Const L_SAMPLEBACKUP_TEXT = "MyBackup" Const L_GETNAME_TEXT = "Configuration Backup Name" Const L_SELECTITEM_TEXT = "Please select a backup to remove." On Error Resume Next function heading(width,thestring) Dim i width=width - len(thestring) for i=width to 0 step -1 thestring=thestring & " " Next heading=thestring end function %>
<%= L_PREVBACKUPS_TEXT %>
 
<% if Session("FONTSIZE")="LARGE" then %> <%= heading(40,L_BACKUPNAME_TEXT) %> <% else %> <%= heading(49,L_BACKUPNAME_TEXT) %> <% end if %> <% if Session("FONTSIZE")="LARGE" then %> <%= heading(1,L_NUM_TEXT) %> <% else %> <%= heading(1,L_NUM_TEXT) %> <% end if %> <% if Session("FONTSIZE")="LARGE" then %> <%= heading(25,L_BACKUPDATE_TEXT) %> <% else %> <%= heading(38,L_BACKUPDATE_TEXT) %> <% end if %>
<% end if %>