Google Buzz URL format with Count

Google Buzz it is also one type share site. we can share our ideas with our friends in google Buzz. Now we can make count of google buzzes on which you passed for Buzz. we can show the image with count. check with this code:- <a title="Post on Google Buzz" class="google-buzz-button" href="http://www.google.com/buzz/post" data-button-style="normal-count" data-locale="en_IN" data-url="http://shareourideas.wordpress.com"></a> <script type="text/javascript" src="http://www.google.c...
More

Kentico CMS 5.5 just released

Kentico CMS 5.5 released with more futures. The new version brings support of Visual Studio 2010 and .NET Framework 4.0, Mobile websites development, FaceBook authentication, out-of-the-box Microsoft Sharepoint integration and many other improvements. My experience with Kentico CMS I am very happy to work in kentico CMS. It is more friendly for developers and for administrator, admin will have full control on site. Kentico CMS 5.5 brings new features and improvements: 1. It's great!, Support f...
More

remove HTML tags in string

How to remove HTML tags in content or string? We can remove HTML tags in string; it is little bit easy using Regex in .net. Here is the code for removing HTML tags for content or string. Code is in C#.net. First import namespace called System.Text.RegularExpressions. Code:- using System.Text.RegularExpressions; Then create one method like this below Code :- #region reusable regex's protected static Regex htmlRegex = new Regex("<[^>]+>|\ \;", RegexOptions.IgnoreCase | RegexOption...
More