Posts

Showing posts from August, 2013

Tips for creating an interesting blog.

Image
How to attract visitors to your blog? The answer does marketing. No one will visit your blog if you do not do the promotion activity. Maybe some of you already did what I will discuss later without you realizing it. The important factor of a successful blog is to have high visitors traffic to the site. There is no meaning if your blog is so beautiful or the contents are good without any visitors to your blog. Try to get high traffic to your blog at least 1000 - 10,000 visitors every month is good enough. The more visitors to your blog, the more successful your blog. Good and latest content. Good content will attract visitors to always waiting for a new post from your blog. Every time they start browsing, they will always visit your blog just to know any update from your blog content. Maybe they will bookmark your blog so that they will always remember the URL of your blog. You can also attract people to join the discussion with your post by allowing them to leave a comment on your post

Tips to get an Idea for blogging.

Image
What will you write in your blog.? This is a common question and also a common problem when someone wants to start writing on their blog. This is also my problem. :-D This is the list of application that will help you to get an idea to start writing in your blog, I'm not an expert, but just want to share the information with all of you. Youtube ( http://www.youtube.com ) Google Trends ( http://www.google.com/trends ) AOL Hot Searches ( http://hotsearch.aol.co.uk/ ) Google Keyword Tool( http://www.googlekeywordtool.com/) These are some applications that you will use to help you to get an idea to start blogging. Youtube Youtube is a popular website for sharing a video on the internet right now. It is the top 3 website that always has high visitors in the world. This is the keyword, top website have a top story/video that will give you the idea, to start brainstorming your mind about what is the most popular video that people watched. What you need to do is to browse the Most Popular

[Fix]Asynchronous operations are not allowed in this context

Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have  the Async attribute set to true and an asynchronous operation can only be started on a page prior to PreRenderComplete event. The error above occurs when you try to call the method on web service asynchronously. The solution is to add Async equal to true in your .aspx page. <%@ Page Title="" Language="C#" MasterPageFile="~/Application/Site1.Master"  AutoEventWireup="true" Async="true"    %> The above solution will solve the error throw.