March, 2010Archive for

Branchr-The other choice to make money online

You 're a blogger. You have a good blog. You want to earn money from it. You bored Google Adsense, BirAdvertise, AdBrite,... Do you want to have a other choice ? Try Branchr. This is a new advertising supplier for publishers. They pay per every click onto thier ads put on your webblog. Currently, they provide some ads format bellow: 120×90 125×125 468×60 300×250 728×90 Mor informations: Is there a minimum cash-out amount? Yes. You can cash-out once your...

Force FeedBurner update your feed immediately

Good everning, FeedBurner is a great service to update your blog 's content to reader via email, RSS feed. I like it very much. However, sometime FB (FeedBurner not FaceBook :) ) is not update data instantly. If you want FB update your feed soon just do a simple step what I descript below. Via Google, I found a tip that force FeedBurner update our feed immediately. Open your browser and paste this text into: http://feedburner.google.com/fb/a/pingSubmit?bloglink=http://your_website_...

Send mail in ASP.NET via GMail account

Good morning, In this post, I want to show a simple code that demonstrate how to send a email in ASP.NET application via a GMail account. Now, open Visual Studio 2005/2008 and create new ASP.NET project. Declare this assembly below: using System.Net; using System.Net.Mail; Use this function, modify if needed public static bool SendMail(string to) { MailMessage mail = new MailMessage(); mail.To.Add(to); mail.Bcc.Add(n...