Solution : while building it in Visual Studio 2008.
The error was saying:
Files has invalid value “���.
Personal Blogs – About me and my world!
Solution : while building it in Visual Studio 2008.
The error was saying:
Files has invalid value “���.
jQuery plugin to add multiple fields (cloned elements) on the fly on page with great custom extensions – asp.net, php any server side language
Hi Friends, I am currently working on maintenance of existing CMS system from our company. Yesterday client came up with an interesting bug, the dynamic forms generated via CMS has just stopped working I investigated for more than couple of hours to find out what’s wrong. In our CMS there is a module of dynamic [...]
Hi Friends, Today I came to a problem while adding an attribute to an XML item in my project. The problem was no special character is allowed as XML attribute To solve this use this regular expression: string strNewValue = System.Text.RegularExpressions.Regex.Replace(sourceValue, @”[^\w\.-]“, “”); It eliminates all special characters from source string, you can specify replace [...]