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...
Read More
Author: Naga Harish M
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...
Read More
Embed Yahoo Messenger in web page
ymsgr: Commands
How to use Yahoo Messenger functions from web page?
Commands list
1) ymsgr:sendIM?[YOURID] -- for send IM
2) ymsgr:sendIM?[YOURID]&m=[your+message] -- for send IM with message
3) ymsgr:chat?[ROOMNAME] -- for join in chat room
4) ymsgr:addfriend?[YOURID] -- for adding your account by your buddy
5) ymsgr:sendfile?[YOURID] -- for send file
6) ymsgr:call?[YOURID] -- for call
7) ymsgr:callPhone?[YOURID] -- for call to phone
8 ) ymsgr:chat <"opens chat room list"
9) y...
Read More