or
| System.Web.UI.ScriptManager.RegisterClientScriptBlock(UpdatePanel1, Me.GetType(), "SCRIPT", "confirmSaveDuplicatePerson()", True) |
| function confirmSaveDuplicatePerson() |
| { |
| radconfirm('Are you sure?',confirmSaveCallback,330,100,null,'Duplicate'); |
| } |
var
myrex = new RegExp("(^([\\w\\-\\.]){5,}$)", "i");
Unfortunately it always returns false. When I debug I see a strange character attached to the end of the args.Value, which the regular expression cannot match. It is shaped like a square in the debugger. What is that and what can I do to disregard it?
Thanks

