- XML resouces provided for Global.asax and web forms.
- Resource name is webformname.aspx.resx and for Global.asaz it is Global.asax.resx
- You must add culture specific resources manually as there is no IDE support for this for web forms.
- Naming convention for culture specific resource is same as in windows application e.g. webformname.culture.resx. If these naming conventions are not followed, resource manager will not be able to find the resources.
- Main assembly will be deployed in \bin folder with culture specific assemblies beneith it e.g. \bin\en-US, \bin\en.
Oracle implementation of Regular expression has no support for using hexadecimal code to search for Unicode characters. The only way to search for Unicode character is it use the character itself. Normally with Regular expression, you can use \x or \u followed by hexadecimal code to search for any character. E.g. \x20 will match space. But REGEXP_LIKE in Oracle does not support \x. You need to use unistr function to convert the code to equivalent character and then use it with REGEXP_LIKE. E.g. REGEXP_LIKE(source,'[' ||unistr('\0020')|| ']');
Comments