I am working in an ASP.NET WebForms application built in VB.NET.
Depending on the role of the current logged in user I want to disable the TextBox. So If he/she is part of Role A, then he / she will be able to edit the content of the TextBox, otherwise the TextBox is disabled.
<asp:TextBox runat="server"
ID="txtResolution"
CssClass="newTextObject"
TextMode="MultiLine">
</asp:TextBox>
How can I achieve this?