Showing posts with label search-engine-optimization. Show all posts
Showing posts with label search-engine-optimization. Show all posts

Monday, 5 August 2013

SEO - what is seo and how does it work

when you enter a query in a search engine and type 'enter' you get a list of website results that contain that query term. Users normally tend to visit websites that are at the top of this list as they perceive those to be more relevant to the query.  websites rank better than the others then you must know that it is because of a powerful web marketing technique called Search Engine Optimization (SEO).

SEO is a technique which helps search engines find and rank your site higher than the millions of other sites in SEO is all about optimizing a web site for Search Engines. SEO thus helps you get traffic from search engines.

How to Work Search Engine  ?


  • Crawling - is the process of fetching all the website pages and linking to all the web site. This task is proceed by a software, called a crawler or a spider (or Google-bot).
  • Indexing - is the process of creating index for all the fetched web pages and keep that into a there database from where it can later be retrieved. Essentially, the process of indexing is identifying the  no\umber of words on that best describe the page and assigning the page to particular keywords.
  • Processing - When a search request coming to search engine, the search engine processes it . i.e. it compares the search string in the search request with the indexed pages in the database.
  • Retrieving Results - The last step in search engines' activities is retrieving the best matched results. Basically, it is nothing more than simply displaying them in the browser.
Search engines such as Google and Yahoo! often update their relevancy algorithm number of times per month and year. When you see changes in your rankings algorithmic something else outside of your control.
Although the basic principle of operation the minor differences between their relevancy algorithm lead to major changes in results relevancy.

Monday, 1 April 2013

this is my new post for feed burn

hkd;jhkljdfhdfhd
fhdfhdfhdf gljfdklgjdfk ljfgkldfjg kldf jdfklgjdfkl gdfjgkldfjg kldfjgkldfg jdfklg jdklgjdfk

Friday, 14 December 2012

HOW DO I GET TRAFFIC TO MY SITE

Many people think that having a good website is all you need to get tons of visitors. Wrong answer. Getting traffic to your site takes hard work and diligence and is not accomplished overnight. Think about it this way - how are people supposed to know where to find your site if you don't tell them? You must advertise. Here are some proven ways to advertise your site without spending much:

  1. artical submission 
  2. forum
  3. blogg posting and committing
  4. social networking sites  
  5. press release
  6. google map
  7. etc........
get more backlinks on your website this may help to increase the traffic.
all above point are beneficial to increase you website traffic  

Thursday, 20 September 2012

simple HELLO WORLD IN ASP.NET

In almost every programming tutorial you will find the classic "Hello, world!" example, and who am I to break such a fine tradition? Let me show you how you can say hello to the world from ASP.NET. Open the Default.aspx (if it's not already opened) by doubleclicking it in the Solution Explorer. It already contains a bunch of HTML markup, as well as some stuff you probably won't recognize, like the Page directive in the top, or the runat attribute on the form tag. This will all be explained later, but for now, we want to see some working code.

First of all, we will add a Label control to the page. A Label control is some what simple, since it's just used to hold a piece of text. Add the following piece of HTML-looking code somewhere between the set of <form> tags:
<asp:Label runat="server" id="HelloWorldLabel"></asp:Label>
Secondly, add this script block somewhere on the page, preferably below the Page directive in the top:
<%
    HelloWorldLabel.Text = "Hello, world!";
%>
If you haven't worked with ASP.NET before, I'm sure there's a bunch of things that you're wondering about now, but as I said, this is all about seeing some results right now. To see the page in action, use Debug -> Start Without Debugging, or simply press F6. VWD will now compile your project, and launch the page you're working on in your default browser. The page will simply have a piece of text which says "Hello, world!" - congratulations, you have just created your first ASP.NET website! Here is the complete listing:
<%
    HelloWorldLabel.Text = "Hello, world!";
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Label runat="server" id="HelloWorldLabel"></asp:Label>
    </div>
    </form>
</body>
</html>