Indexed Google Secret

02/12/2010

Iam very grateful that my blog is already listed in Google and yahoo in less than 24 hours since first created. Please check your website / blog already indexed and Google other search engine? Enter your URL in Google (for example: http://website_name.com). Is there?

Are there already? If your website is not in the search results, there are techniques that your pages are indexed search engine.

Techniques are:

1. Create a link on the page that is indexed to the search engines that our new website. We look at the profile (for example: “www.friendster.com / okam” is a good example to link to the blog or our website. As is usually the page has been indexed search engine. The higher the page’s position in search engines (Page Rank) means that the fast indexed our new website.

  • You can contact your friends who have blogs indexed search engine to install the link to you.
  • If the profile / blog on your MySpace / multiply already indexed, you can attach the link in your profile.
  • Diligently fill your blog. Google Analytic is a plug-in wordpress will always monitor your activity.

2. Submit manually through the following URL (FREE):

  • Google: http://www.google.com/addurl.html
  • Yahoo: http://search.yahoo.com/info/submit.html
  • Altavista: http://www.altavista.com/addurl/
  • DMOZ / ODP: http://www.dmoz.org/add.html
  • Alexa: http://www.alexa.com/support/get_archive.html
  • MSN: http://search.msn.com/docs/submit.aspx

3. Submit the URL to pay:

  • Lycos: http://home.lycos.com/addasite.html

4. Before you submit your URL, your website, make sure:

  • Website or your blog is so (not under construction).
  • There are no dead links in your website.
  • Website or you made that search engine friendly.

Later, waiting with patience and please send the URL. Cases, three months, the site of luck if you're lucky you should probably wait for your application in less than 24 hours, the search engine that indexes are not received. Submit your website that you can re-use within three months if not listed in search engines.

What should be done during the wait? Build SEO friendly and of course build links to.

Use Best seo software tool

If you’re anything like me, you’ve probably created a brand new website, submitted it to a few search engines and hoped that people would mysteriously show up at your site and buy whatever it is you were selling.

After a couple of weeks go by and only a few stray people appear on the site if you decide to try to "optimize

At this point you probably give up and decide to either build another website around a different target market or just lose all hope and quit. Well, news flash, as you’ve probably figured out by now, this is not the way to go about doing things.

so seo tool is a central component of building a successful online business, as you would outsource search engine optimization, content writing and link building, the reality is that it affects every other step in marketing a website. In other words, if you wrong, you will be wasting your time and, more importantly, your money.

Read about best seo tool : seo tutorial

Use Directory submitter

Submit Website Directory is a way to easily add to and improve back link PageRank. But not all websites can be directly received in Web directory. Wed each directory has its own rules.

This rule is that a form submission, I have not read that 90 percent believe, the first main submission, I have business rules, guidelines or one presented by the frequent calls are received, website can be used to create better guidelines, as well as increase our website will probably be displayed.

After reading some of the Submission Guidelines web directory, there are several things that must be in receipt when submit directory on the web:

1. MFA (Make for Adsense) website.
Create a Ministry of Foreign Affairs website, I do not recommend that you install a good of Adsense. After the submission of the various directories is that, in the new AdSense. This also applies to the program, but also including other affiliate programs. Please note that many web directory down because too many sites or AdSense,. Here are some examples:

Site made for adsence or other ad services.

  • Do not submit sites that are mainly built for Google AdSense or other advertising programs.
  • Do not submit sites which only contains affiliate links with no real content

2. Do not Use Subfolders To Create New Website
If you create a new website using the recommended sub-domain only.
Example:

  • Use newsite, do not use domain.com www.namadomain.com / newsite. Sub folders should be used to create new services such as forum, chat, etc..
  • Sub domain will be more appreciated by web directory of subfolders.
  • Do not submit subfolder - use the top-level domain or maximum sub domain.

3. Submit Only in the Category One is enough
Once one of several types of web directories one at once, please do not submit to the most likely to be rejected. Select a category, choose the most appropriate category, not reckless, I fell for selected according to the following types. Just one single category, Web site submission (according to most of the content, accuracy). Site, the person who submitted the wrong category and add our site to submit to the categories should not overlap.

4. Use English
English is the language of most parts of the world is also on the Internet, so that most web directories only accept websites that serve the English language. Therefore, the site is trying to use, from the English language when the purpose for the money with Adsense or other programs. The use of English makes it easier to submit the website to promote, including web directory.

5. Title and Description
When completing the form:

  • Do not write the title or description of the website in all capital letters.
  • Do not write with a capital letter for each letter at the beginning of the word. Start writing the title with a capital letter.
  • Do not fill the description with more keywords, content description website website.
  • CAPITALIZATI0N of inappropriate words.
  • Description or title are basically nothing but keywords
  • Do not capitalize the first letter of every word in the description.
  • ALL words in the title must start with a capital letter, including Prepositions and articles.

When do have to submit web directory, web directory address of record so that when the new website does not need to fuss again seek to submit web directory website.

Below is an example website for directory submitter PageRank 5-8 :

Yahoo! Directory

DMOZ

Business.com

Best of the Web

WhatUSeek

GreenStalk

InCrawler

Sezza

Family Friendly Sites

MultiMeta

Joeant

SearchSight

IllumiRate

WebSitesPromotionDirectory

HotVsNot

GoGuides.org

Gimpsy

Internet-Web

NetInsert

DirectoryWorld

Clickey

123world

Zerg Directory

RubberStamped

Posted in: html tutorial| Tags: Blog Website Google example yahoo search check url engineenter iam

Tip: jQuery AJAX calls to a WCF REST Service

06/11/2009

WCF 3.5 includes REST functionality and one of the features of the new WCF webHttp binding is to return results in a variety of ways that are URL accessible. WCF has always supported plain URL HTTP access, but it's not been real formal and had somewhat limited functionality as parameters had to be encodable as query string parameters. With the webHttp binding there's now an official WCF protocol geared towards providing ASP.NET AJAX JSON compatibility (using WebScript behavior) as well of a slightly cleaner raw JSON implementation (basic webHttp binding).

You can return XML (default), JSON or raw data from WCF REST services. Regardless of content type, natively WCF always wants to return content in a 'wrapped' format which means that both inbound parameters and outbound results are wrapped into an object.

Let's take a look at the message format for a  REST JSON service method.

[ServiceContract(Name="StockService",Namespace="JsonStockService")]    
public interface IJsonStockService
{
    [OperationContract]          
    [WebInvoke(Method="POST",
               BodyStyle=WebMessageBodyStyle.Wrapped,
               ResponseFormat=WebMessageFormat.Json
    )]
    StockQuote GetStockQuote(string symbol);

..

The input message on the wire looks like this:

{"symbol":"MSFT"}

The response looks like this:

{"GetStockQuoteResult":
        {"Company":"MICROSOFT CP",
        "LastPrice":30.00,
        "LastQuoteTime":
        "\/Date(1208559600000-0700)\/",
        "LastQuoteTimeString":"Apr 18, 4:00PM",
        "NetChange":0.78,
        "OpenPrice":29.99,
        "Symbol":"MSFT"}
}

Notice that in both cases an object is used. For the inbound data all parameters are wrapped into an object and rather than just passing the value, the name of the parameter becomes a property in the JSON object map that gets sent to the server. This is actually quite useful - if you're just sending a raw JSON structure you could only pass a single parameter to the server - and that option is also available via the Web BodyStyle=WebMessageBodyStyle.Bare option on the service method.

The outbound result set is also wrapped into an object which is a lot less useful. This is a hold over from WCF which wraps all responses into a message result object, which usually makes sense in order to support multiple result values (ie. out parameters etc.). In a Web scenario however this doesn't really buy you much. Nevertheless if you want to pass multiple parameters to the server you have to use this wrapped format along with the result value.

Calling with jQuery

If you're using jQuery and you'd like to call a WCF REST service it's actually quite easy either with bare or wrapped messages. Bare messages are easier to work with since they skip the wrapping shown above, but as I mentioned you're limited to a single input parameter. So if your service has any complexity you'll likely want to use wrapped messages.

You can opt to either call services using the ASP.NET Ajax logic (WebScriptService behavior) or using the raw service functionality which is shown above.

To call these methods with jQuery is fairly straight forward in concept - jQuery includes both low level and highlevel methods that can call a URL and return JSON data. The two methods available are $.getJSON() which automatically parses result JSON data and $.ajax(), which is a lower level function that has many options for making remote calls and returning data.

getJSON() is useful for simple scenarios where the server returns JSON, but it doesn't allow you to pass JSON data TO the server. The only way to send data to the server with getJSON is via query string or POST data that is sent as standard POST key/value pairs. In all but the simplest scenarios getJSON() is not all that useful.

The lower level $.ajax method is more flexible, but even so it still lacks the capability to pass JSON data TO the server. So little extra work and some external JSON support is required to create JSON output on the client as well as dealing with Microsoft Ajax's date formatting.

Posted in: C# and .NET| Tags: Format Tip WCF ajax jQuery REST url webhttp json functionality content

Hot Posts

Latest posts

Tags

Others

Sponsors

asp.net interview questions