I have created textbook dynamically as follows,
for the password I have pass the value '2' for textmode.
Actually I have create the control on page load. But i can't see the text which I pass to the control(expected to see ************).
But text will be empty.
Please guide me to avoid this issue.
Dim control As New RadTextBox()control.ID = "txtpassword"control.Text = obj.FieldValuecontrol.CssClass = obj.CssClasscontrol.WrapperCssClass = obj.WrapperCssClasscontrol.AutoPostBack = obj.IsAutoPostBackcontrol.TextMode = obj.TextModeActually I have create the control on page load. But i can't see the text which I pass to the control(expected to see ************).
But text will be empty.
Please guide me to avoid this issue.