Merge
This commit is contained in:
commit
37f701b17d
2 changed files with 8 additions and 1 deletions
|
@ -41,7 +41,7 @@
|
||||||
<asp:Label ID="lblSubscriberNumber" runat="server" meta:resourcekey="lblSubscriberNumber" Text="Account Number:"></asp:Label>
|
<asp:Label ID="lblSubscriberNumber" runat="server" meta:resourcekey="lblSubscriberNumber" Text="Account Number:"></asp:Label>
|
||||||
</td>
|
</td>
|
||||||
<td class="NormalBold">
|
<td class="NormalBold">
|
||||||
<asp:TextBox id="txtSubscriberNumber" runat="server" CssClass="NormalTextBox"></asp:TextBox>
|
<asp:TextBox id="txtSubscriberNumber" runat="server" CssClass="NormalTextBox" ></asp:TextBox>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,13 @@ namespace WebsitePanel.Portal
|
||||||
|
|
||||||
if (PortalUtils.GetHideDemoCheckbox()) rowDemo.Visible = false;
|
if (PortalUtils.GetHideDemoCheckbox()) rowDemo.Visible = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (PanelSecurity.LoggedUser.Role == UserRole.User)
|
||||||
|
{
|
||||||
|
txtSubscriberNumber.ReadOnly = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void BindUser()
|
private void BindUser()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue