special characters symbols of carriage returns and any special characters that are invisible text processor .
special characters symbols of carriage returns and any special characters that are invisible in text processor.
i don't know asp very well, but in php are 2 functions, preg_replace and str_replace, in asp should be some similar functions, check a manual.
This function handles this. It removes all characters except small caps, capital letters, numbers.. <% Function TrKarakterKontrol(Metin) Set RegEx = New RegExp RegEx.Pattern = "[^a-zA-Z0-9_]+" RegEx.Global = True RegEx.IgnoreCase = True TrKarakterKontrol = Not RegEx.Test(Metin) End Function %> Code (markup): Source: http://forum.ceviz.net/showpost.php?p=201483&postcount=37