Domain expiration task view fix

This commit is contained in:
vfedosevich 2014-12-08 06:29:21 -08:00
parent f8f7f196c4
commit ad6734fe9c
3 changed files with 2 additions and 12 deletions

View file

@ -121,7 +121,7 @@
<value>Enable Client Notification</value> <value>Enable Client Notification</value>
</data> </data>
<data name="lblDayBeforeNotify" xml:space="preserve"> <data name="lblDayBeforeNotify" xml:space="preserve">
<value>Notify before</value> <value>Notify before (days)</value>
</data> </data>
<data name="lblDayBeforeNotifyHint" xml:space="preserve"> <data name="lblDayBeforeNotifyHint" xml:space="preserve">
<value>Number of days before expiration date</value> <value>Number of days before expiration date</value>

View file

@ -21,11 +21,10 @@
<tr> <tr>
<td class="SubHead" nowrap> <td class="SubHead" nowrap>
<asp:Label ID="lblDayBeforeNotify" runat="server" meta:resourcekey="lblDayBeforeNotify" Text="Notify before:"></asp:Label> <asp:Label ID="lblDayBeforeNotify" runat="server" meta:resourcekey="lblDayBeforeNotify" Text="Notify before (days):"></asp:Label>
</td> </td>
<td class="Normal" width="100%"> <td class="Normal" width="100%">
<asp:TextBox ID="txtDaysBeforeNotify" runat="server" Width="95%" CssClass="NormalTextBox" MaxLength="1000"></asp:TextBox> <asp:TextBox ID="txtDaysBeforeNotify" runat="server" Width="95%" CssClass="NormalTextBox" MaxLength="1000"></asp:TextBox>
<asp:Label ID="lblDayBeforeNotifyHint" runat="server" meta:resourcekey="lblDayBeforeNotifyHint" Text="Number of days before expiration date"></asp:Label>
</td> </td>
</tr> </tr>
</table> </table>

View file

@ -65,14 +65,5 @@ namespace WebsitePanel.Portal.ScheduleTaskControls {
/// To modify move field declaration from designer file to code-behind file. /// To modify move field declaration from designer file to code-behind file.
/// </remarks> /// </remarks>
protected global::System.Web.UI.WebControls.TextBox txtDaysBeforeNotify; protected global::System.Web.UI.WebControls.TextBox txtDaysBeforeNotify;
/// <summary>
/// lblDayBeforeNotifyHint control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Label lblDayBeforeNotifyHint;
} }
} }