Hi all I am having my textbox designed as follows
On my server side code I code as follows
But unable to load the Window can some one help me..
<telerik:RadMaskedTextBox Mask="###-##-####" runat="server" ID="txtSSN" Width="200px" AutoPostBack="true" OnTextChanged="ssnchanged"> </telerik:RadMaskedTextBox>On my server side code I code as follows
protected void ssnchanged(object sender, EventArgs e) { if (txtSSN.Text.Length != 9) { RadWindowManager1.VisibleOnPageLoad = true; string scriptstring = "radalert('You must save Employee Information to proceed further..', 250, 80,'Information');"; ScriptManager.RegisterStartupScript(this, this.GetType(), "radalert", scriptstring, true); } }But unable to load the Window can some one help me..