i was searching for how to show my site Google search as top link site, i came to know that one approach is to add meta tags.
The following steps i have followed for my site :
Step 1 : Adding section for meta in the the main layout under head section
@RenderSection("metas")
Step 2 : Added the following code in the in child page
@section metas
{
<meta name="description" content="Hello world" />
<meta name="title" content="Hello world, Sample program" />
<meta name="keywords" content="Test1, Test2, Test3" />
}
I found small problem in the koolwired.imap project i.e. returning null value for data of the attachment. _Message.BodyParts[BodyPartNumber].Attachment is true and even thought the attachment contains some data then _Message.BodyParts[BodyPartNumber].Data is null.
I fixed this problem, you can download the sample console application using this link : Click here
I implemented the methods for save attachment and open attachment int ImapAttachment Class.