Is it possible to change textbox placeholder
via ASP.NET code behind? If so, how?
Markup:
<asp:TextBox ID="TXTPassR" runat="server" CssClass="form-control"
placeholder="Enter password" TextMode="Password"></asp:Textbox>
Code behind:
if (Something)
{
//Change placeholder
}