Creating web template in Kentico CMS

Creating web template in Kentico CMS with video In post I am going to show we can re use site template. that we want to use our current site created with Kentico CMS as a web template, so that we can use it as a starting point for developing new sites. Please check with this image, you will get idea. Video and steps :- [youtube=http://www.youtube.com/watch?v=xFhvh6HV5F4] You can get details in Kentico CMS developer guide too, please check with this URLs http://www.kentico.com/docs/devguide/i...
More

How to add new webpart in Kentico CMS

In this post I am going to show how to add new webpart in kentico CMS site. Before going in details I want to tell few words about KENTICO CMS. I like this CMS, it is easy for developer and administrator too. Please check with this video and steps to add new webpart in your site. [youtube=http://www.youtube.com/watch?v=aGCH2DAwwLI] Steps:- 1) Go to Kentico cms market place http://devnet.kentico.com/Marketplace.aspx 2) Then download new webpart package. 3) Then place downloaded package in the f...
More

How to add Alternate views for email in C#.net

Use the AlternateViews property to specify copies of an e-mail message in different formats. For example, if you send a message in HTML, you might also want to provide a plain text version in case some of the recipients use e-mail readers that cannot display HTML content. Code :- using System.Net.Mail; // import System.Net.Mail; //serverDetails - Your smtp server details //recipient    - To mail ID public void MultipleViewsMailSend(string serverDetails, string recipient) { MailMessage msg = ne...
More