Showing posts with label Google. Show all posts
Showing posts with label Google. Show all posts

Saturday, February 27, 2010

Google Buzz Posting from Asp.net Web Application

Earlier I have discuss about how to post tweet from asp.net web application. In this article I would discuss how to post google buzz from asp.net web application.

What is Google Buzz
Google Buzz is Twitter like service from google, inside gmail.

Following Procedure explains how to send google buzz from asp.net website without using google buzz api.

Step 1: As Google Buzz require a valid gmail account. You need to decide, from which gmail account you would like to post google buzz. For this example, i would be posting google buzz from my gmail account. i.e. dotnetguts [at the rate] gmail [dot] com.

Step 2: Enable Google Buzz posting by sending email. Please follow following to do so.
a) Log into your gmail account.

b) Open Google Buzz.

c) Click on Connected Sites link as shown in figure.


d) Click on Add button associated with "Post via buzz@gmail"


e) Click on save button.


Step 3: Open Visual Studio and create new asp.net website.

Step 4: Arrange web control as shown in following figure.



Step 5: Call following Function from Button Click Event.


private void PostBuzzMsg(string strEmail, string strPassword, string BuzzMsg)
{
//Create Mail Message Object with content that you want to send with mail.
System.Net.Mail.MailMessage MyMailMessage =
new System.Net.Mail.MailMessage(strEmail, "buzz@gmail.com",
BuzzMsg + "... http://dotnetguts.blogspot.com", string.Empty);

MyMailMessage.IsBodyHtml = false;

//Proper Authentication Details need to be passed when sending email from gmail
System.Net.NetworkCredential mailAuthentication = new
System.Net.NetworkCredential(strEmail, strPassword);

//Smtp Mail server of Gmail is "smpt.gmail.com" and it uses port no. 587
//For different server like yahoo this details changes and you can
//get it from respective server.
System.Net.Mail.SmtpClient mailClient =
new System.Net.Mail.SmtpClient("smtp.gmail.com", 587);

//Enable SSL
mailClient.EnableSsl = true;

mailClient.UseDefaultCredentials = false;

mailClient.Credentials = mailAuthentication;

mailClient.Send(MyMailMessage);
}

Step 6: Run asp.net website and Send Message.



Now Check your Buzz to see how message appears.

Friday, August 22, 2008

Finding Search Volume of Keyword SEO

Use the Keyword Tool to get new keyword ideas. Select an option below to enter a few descriptive words or phrases, or type in your website's URL. It also display following information.
  • Keyword
  • Monthly Search Volume
  • Suggestion Bid in $ (How much that keyword is worth)
  • And more information.
http://www.google.com/sktool



Finding Search Volume of Keyword SEO
How to find Search Volume of Keyword.

To Find Search Volume of keyword with the help of Google Keyword Tool.

https://adwords.google.com/select/KeywordToolExternal

Tuesday, June 24, 2008

Replacing Localization with Google Translate in Asp.net

Replacing Localization with Google Translate in Asp.net

Google Translate is constantly improving its Translate functionality, and moreover it is supporting lots of locale, so will it be solution for next generation asp.net web applications for atomizing translate functionality? Will Google Translate replace the localization and globalization concept in asp.net.






Example of Google Translate from English to Hindi Language


Example 1:


Example 2




Lets understand when and where solution provided by Google Translate is feasible, to implement in web application.

Advantage of using Google Translate over localization and globalization concept in asp.net

  • Google Translate is Free Service
  • No Extra Development Cost, No Translation Cost to web application development.
  • Google Translate supports following Langauges, which is lot compare to solution provided by developer.

Languages supported by google translate

Arabic, Bulgarian, Chinese(Simplified), Chinese(Traditional), Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hindi, Italian, Korean, Japanese, Norwegian, Polish, Romanian, Russian, Spanish, Swedish, Portuguese.

  • Google Translate, not only translate the localization resources, but it also translate the data into local language, which is the most important considerable point for choosing google translate over localization solution provided by asp.net web application.
  • Flexibility to switch between English and Local Language to get better understanding.

Disadvantages of using Google Translate over localization and globalization concept in asp.net

  • It is suitable in situation for web application which is specifically targeted to English audience, but it might require to be translated in other locales, just as extra functionality.
  • Image is not converted to Local Language.
  • Sometimes Translation changes the whole meaning of sentence, which is not acceptable depends on nature of application.



  • It displays google logo which is less preferred while developing enterprise level application.

Now depends on some of advantage and disadvantage identified by me, you can compare it with nature of your application.

Link of Interest:

Releated Links

Friday, June 13, 2008

E-commerce solution Google Checkout Asp.net

E-commerce solution Google Checkout Asp.net

Implementing E-commerce solution with Google Checkout in Asp.net

What is Google Checkout?

From Buyers Prospective: Google Checkout is a fast, secure, and need to provides a single login for purchases across the web.

From Suppliers Prospective: Secure, Convenient way to develop E-commerce solution and process payment. Better way to avoid invalid orders from reaching you.

For more Information on What is Google Checkout


Benefits of Using Google Checkout

Stop creating multiple accounts and passwords: With Google Checkout™ you can quickly and easily buy from stores across the web and track all your orders and shipping in one place.

Shop with confidence: Our fraud protection policy covers you against unauthorized purchases made through Google Checkout, and we don't share your purchase history or full credit card number with sellers.

Control commercial spam: You can keep your email address confidential, and easily turn off unwanted emails from stores where you use Google Checkout.


Google Checkout Fees to Process Online Transaction?

Google Checkout Fees for processing online transaction is $0.20 Cents Per Transaction + 2%. Find out more on Fees for Online Transaction Processing for Google Checkout


Limitation of Google Checkout?

Currently Google Checkout is available for UK and US merchant only.

Check out requirement to become Google Checkout Merchant


How it works?

Step1: Create Google Checkout Merchant account. (Supplier Account).

http://sandbox.google.com/checkout/sell/ and create Supplier Account.

Step2: Create a Google Checkout button

Step3: Place the code for Google Checkout button on your web page.

For more detail on how exactly you can these works check out

Find out more on How Google Checkout works


How can I use Google Checkout Facility to Build Ecommerce Solution in Asp.net?

Useful link for developing e-commerce solution with google checkout in asp.net application


Forum and Group for solving Google Checkout Developers Issue


Tuesday, June 03, 2008

Convert Word Document to HTML, PDF, and other formats

Convert Word Document to HTML, PDF, and other formats

You can convert word document to PDF, HTML and many other formats with google document it is simple and free service.

I have created a sample document for conversion


Convert Word Document in PDF Format







Word document in PDF format with all the formatting available.






Word Document converted in HTML Format

Saturday, October 27, 2007

Google Page Rank Updated

Google Page Rank Updated.


Google Page Rank of dotnetguts blog is updated from 3 to 4.


Thursday, August 23, 2007

Displaying Google Map in your asp.net web application

Displaying Google Map in asp.net web application

Found 2 useful link which will help to display google map in asp.net web application within few minutes.


Wednesday, August 01, 2007

Inspiration for Developers

Jawed, who is the Co-Founder YouTube , which is the 4th most-popular website in the world and one of the fastest-growing websites in the history of the Internet. Amazing to know how the idea of YouTube originated. This was the best way for me to see how things got started with YouTube. - From Ali Raza Shaikh Blog






I found it inspiring one for all developers, specially within a small span of time two gaint google and youtube has prove that "Anything is possible"

If you don't find this post inspiring one than check out the latest clip from chak de India, it is really inspiring one, well SRK is back after so long with some good movie lets hope best from this one

Cheers and Enjoy!

Friday, June 08, 2007

Google Gears Enabling Offline Web Applications

Google Gears (BETA) is an open source browser extension that enables web applications to provide offline functionality using the following JavaScript APIs:

  • Store and serve application resources locally
  • Store data locally in a fully-searchable relational database
  • Run asynchronous Javascript to improve application responsiveness
Google is rolling out a technology designed to overcome the major drawback faced by all web-based applications: the fact that they don't work without an internet connection.
Google Gears is an open source technology for creating offline web applications that is being launched today at Google's annual Developer Day gatherings around the world.

With Google Gears, we're tackling the key limitation of the browser in order to make it a stronger platform for deploying all types of applications and enabling a better user experience, Google CEO Eric Schmidt said in a statement.

The Google Gears technology is designed to be used for web applications such as email and word or image processing.

While it can be used with non-Google applications, it's clear that the web search and advertising giant will be the major beneficiary of what is expected to be an enthusiastic take up.
That enthusiasm is not expected to extend to Microsoft. Google has already invaded the software company's turf, offering Google Apps - its package of workplace programs - as an alternative to Microsoft's Office suite.

Read more...

Sunday, May 27, 2007

Basic SEO Tips : Easy to adopt

Some of the basic SEO tips for every web masters, they are easy to adopt.

Basic SEO Rules : Must follow
http://www.vbulletin-faq.com/vbulletin-basics.htm

Webmaster Guidelines from Google
http://www.google.com/support/webmasters/bin/answer.py?answer=35769

Wednesday, May 23, 2007

Programmers Search Engine

Search Engine For Programmers


A Search Engine has been designed which fulfills all the needs of programmers, with specific focus on following areas
  • Projects
  • Sourcecode
  • Articles
  • Tutorials
  • Ebooks
  • Answers to Programming Queries
  • Interview FAQs
  • Interview Tips and Tricks
  • Programming ToolsTechnology
  • News
  • Technical Jokes
  • Programming Glossary
  • Useful Programming Links
  • Freelance work
  • Programming Tips and Tricks
  • Smart Coding Tips
  • Programming Communities
  • Online Exams details
  • Offshore Development at cheapest rate
  • And much more...

What is so special about this search engine?

  • It is a Search Engine Functionality Provided by Google.
  • Link which are specific to programmer will be given higher priority, rather than searching entire web, so your search would not only be faster but also get relevant results within no time.

http://search.dailyfreecode.com/

So till dailyfreecode.com is out for you, you can take advantage of Search Facility http://search.dailyfreecode.com/

Tuesday, April 10, 2007

Google plans worldwide developer day

Google hopes to woo more developers to its Web services software platform with a 27-hour-long "Developer Day" on May 31.

To spark more interest in its development tools and APIs (application programming interfaces), the company on Wednesday invited developers to attend workshops at Google offices in 10 countries. Topics to be covered will include developing location-based services with Google Maps, Google Earth, and SketchUp; creating mash-ups with AJAX (asynchronous JavaScript and Extensible Markup Language) and Google Gadgets, and developing with the Google Web Toolkit.

Check out more details

AOL Launches Search Ad Service with Google

Time Warner Inc.'s AOL division will introduce a paid search service on Monday backed by Google Inc.'s technology to help advertisers better target AOL users.

AOL Search Marketplace is part of a December 2005 agreement with Google in which the Web search leader purchased a $1 billion stake in AOL, the online division of the world's largest media company.

As part of the deal, sponsored links from Google's AdWords technology appeared on AOL Search pages. AOL Search Marketplace, a customized version of AdWords, now lets advertisers reach AOL Search customers more effectively, AOL said.

Check out more details @ eWeek

Wednesday, April 04, 2007

Gmail Agent / Mail Notifier & Address Importer

Gmail Mail Notifier and Address Importer

http://www.codeproject.com/csharp/gmailagent.asp

Sound Interesting.

Saturday, November 04, 2006

Gmail for Mobile webpage

Users can download the free application directly to their mobile device from the Gmail for Mobile webpage. The software requires users to provide their own wireless data connection.

Users can currently access Gmail messages through mobile browsers or built-in email clients, but the new Gmail for Mobile claims to offer a better user experience.

Friday, October 27, 2006

Google offers personal searches


Google Custom Search Engine, as the tool is known, allows users to choose which webpages to search. Users can also customise the look of results, how web content is prioritised or add paying adverts to the results. For more detail click here

Saturday, October 14, 2006

Google Code Search

There is yet another brand new service from Google named as Google Code Search. This service designed to make it easier for computer programmers to find bits of code online. Google Code Search will make it easier for software developers to find programming code directly, without having to search forums, most of which are open source code.

http://www.google.com/codesearch

Sunday, October 01, 2006

Send Email from Gmail in asp.net 2.0

Simplest Way of Sending Email from Gmail

protected void btnSendEmail_Click(object sender, EventArgs e)
{
//Create Mail Message Object with content that you want to send with mail.
System.Net.Mail.MailMessage MyMailMessage = new System.Net.Mail.MailMessage("dotnetguts@gmail.com","myfriend@yahoo.com",
"This is the mail subject", "Just wanted to say Hello");

MyMailMessage.IsBodyHtml = false;

//Proper Authentication Details need to be passed when sending email from gmail
System.Net.NetworkCredential mailAuthentication = new
System.Net.NetworkCredential("dotnetguts@gmail.com", "myPassword");

//Smtp Mail server of Gmail is "smpt.gmail.com" and it uses port no. 587
//For different server like yahoo this details changes and you can
//get it from respective server.
System.Net.Mail.SmtpClient mailClient = new System.Net.Mail.SmtpClient("smtp.gmail.com",587);

//Enable SSL
mailClient.EnableSsl = true;

mailClient.UseDefaultCredentials = false;

mailClient.Credentials = mailAuthentication;

mailClient.Send(MyMailMessage);
}

Thursday, August 31, 2006

Google Now Offers Book Downloads


Google has expanded its controversial book search service to allow people to download whole copies of books in PDF format to their computers, with the ability to print them out.
The feature will go live Wednesday at the service's Web site, said Adam Smith, group product manager of Google Book Search and Google Scholar.


The books available for download will only be those that are in the public domain and thus not protected by copyright, Smith said. Until now, people have been able to read these public-domain books on the Google Book Search Web site, but not download and print them, he said.

Google will not allow downloading of copyrighted books, not even those for which it has obtained permission from the copyright holders to display their full text, Smith said.

The vast majority of the public-domain books available for download have been scanned as part of the library project of the Google Book Search service, Smith said.


http://books.google.com/


To read entire article : http://www.pcworld.com/article/id,126964-c,google/article.html

Sunday, August 27, 2006

Google battles Microsoft with new online software tools

Internet giant Google Inc. took the software battle deeper into Microsoft's territory with a new package of online services for small-business users.

Google said it would offer businesses tailor-made versions of its free email service Gmail, instant messaging, voice calling, shared calendars and basic design, publishing and hosting of websites.

The company is marketing its "Google Apps for Your Domain" service to smaller companies, non-profit groups and universities that want the full range of web-based corporate services without the cost.

"The service scales easily to accommodate growing user bases and storage needs while drastically reducing maintenance costs," Google said in a statement Monday.

The service expands on basic online software already offered by Google such as word processing and spreadsheets that analysts say are part of a strategy by the search titan to take on industry leader Microsoft at its own game.

http://news.yahoo.com/s/afp/20060828/tc_afp/usitinternetcompanygooglemicrosoft

Most Recent Post

Subscribe Blog via Email

Enter your email address:



Disclaimers:We have tried hard to provide accurate information, as a user, you agree that you bear sole responsibility for your own decisions to use any programs, documents, source code, tips, articles or any other information provided on this Blog.
Page copy protected against web site content infringement by Copyscape