Vipul Limbachiya Rotating Header Image

Posts under ‘C#’

Solution : Error while Build project in VS 2008 : Files has invalid value “���.

Solution : while building it in Visual Studio 2008.

The error was saying:

Files has invalid value “���.

Create hyperlinks automatically in a text by replacing url/url pattern in entered text with c# asp.net

How to Make Dynamic Hyperlinks Using C# in ASP.NET

jQuery plugin to add multiple fields (cloned elements) on-the-fly on webpage

jQuery plugin to add multiple fields (cloned elements) on the fly on page with great custom extensions – asp.net, php any server side language

How to handle dynamic form’s submission in CMS :: C# – asp.net

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 [...]

Remove all special characters from a string to make valid xml entry : C#

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 [...]