it is a very simple scenario. I have a RadTextBox in Password mode which is nested in RadMultiPage.
When i click a checkbox with enabled AutoPostback AJAX loading panel appears and the password field is empty.
As you see i have a RadAjaxManager. Otherwise i would simply say:
Thank you
When i click a checkbox with enabled AutoPostback AJAX loading panel appears and the password field is empty.
As you see i have a RadAjaxManager. Otherwise i would simply say:
If IsPostBack Then If Not String.IsNullOrEmpty(Password.Text.Trim()) Then Password.Attributes.Add("value", Password.Text) End If If Not String.IsNullOrEmpty(ConfirmPassword.Text.Trim()) Then ConfirmPassword.Attributes.Add("value", ConfirmPassword.Text) End If End IfThank you