<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;A04CRHozcCp7ImA9WhRaFE4.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906</id><updated>2012-02-16T16:52:45.488-08:00</updated><category term="C#" /><category term="Tips For Google Adsense" /><category term="Visual Studio" /><category term="MySQL" /><category term="SEO" /><category term="Other" /><category term="Javascript" /><category term="SQL Server" /><category term="Search Engine Optimization" /><category term="ASP.net" /><category term="Ajax" /><category term="Visual Studio 2010" /><category term="Mobile Application Development" /><title>HITESH AGJA'S BLOG</title><subtitle type="html">SQL, ASP.net, SEO Blog</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://hiteshagja.blogspot.com/" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>20</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/blogspot/hiteshagja" /><feedburner:info uri="blogspot/hiteshagja" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DkEBRHgzfCp7ImA9WxFTE0o.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-5612338618547073813</id><published>2010-04-04T02:47:00.000-07:00</published><updated>2010-04-04T02:50:55.684-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-04-04T02:50:55.684-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="C#" /><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Application Development" /><title>Send Long SMS/Multipart SMS/Concatenated SMS</title><content type="html">&lt;p style="text-align: justify;"&gt;Here I am writing about most awaited post of my blog with great excitement.  In this post I will explain you , how to send long SMS or multipart SMS or concatenated SMS. Before I explain you I want to share my experience during searching for the secret of long SMS. When I started searching on internet about “&lt;em&gt;how to send concatenated sms&lt;/em&gt;”, I found resource on wiki which explains the basic of long SMS and PDU format for sending long SMS. But this page (wiki) contains link at bottom of the page and this link (trust me) one of the best resource on the internet to learn about concatenated SMS. Here is the link if you want to read this blog : &lt;a title="http://mobiletidings.com/2009/02/18/combining-sms-messages/" href="http://mobiletidings.com/2009/02/18/combining-sms-messages/"&gt;http://mobiletidings.com/2009/02/18/combining-sms-messages/&lt;/a&gt;.  But still I am having same problem not able to send long SMS using AT command. But reading this blog I am sure that I am missing something in my PDU which cause problem. What I have done is I have contacted Franco (owner of &lt;a title="http://www.franco7777.net/" href="http://www.franco7777.net/"&gt;http://www.franco7777.net/&lt;/a&gt;), who is one of the commenter on &lt;a title="http://mobiletidings.com/2009/02/18/combining-sms-messages/" href="http://mobiletidings.com/2009/02/18/combining-sms-messages/"&gt;“http://mobiletidings.com/2009/02/18/combining-sms-messages/”&lt;/a&gt; blog. He gave me very nice response and explain me where my mistake is.  And after that I have got the clear idea about sending long SMS over network.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;Now I want to show you how you can send long SMS. But before reading this post further I will strongly recommend you to read &lt;a title="http://www.dreamfabric.com/sms/" href="http://www.dreamfabric.com/sms/"&gt;http://www.dreamfabric.com/sms/&lt;/a&gt; and grab basic idea about SMS PDU structure. When you send single SMS ( &amp;lt;= 160 Character) there is not UDH exist in the message but when you try to send long SMS ( &amp;gt; 160 Character) you need to add this UDH field into the message PDU. So the basic question is how to add this header in to the message. One more thing you should know to send concatenated SMS, and the thing is when you send single SMS there is no User Data Header so little less confusion and you don’t need to add padding bit to encode your message into GSM 7-bit encoding scheme but if you are going to send concatenated SMS, UDHL is exist and it is in septets so you need to add one padding bit compulsory to encode your SMS. Read &lt;a title="http://mobiletidings.com/2009/02/18/combining-sms-messages/" href="http://mobiletidings.com/2009/02/18/combining-sms-messages/"&gt;http://mobiletidings.com/2009/02/18/combining-sms-messages/&lt;/a&gt; blog to get the clear idea because I don’t want to post same content again in this post.&lt;/p&gt;&lt;br /&gt;So basically there are 2 secret to send long SMS&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;Add User Data Header&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Add Padding bit to encode your message.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;If I want to send&lt;br /&gt;&lt;br /&gt;Message:&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;Message 1: “&lt;strong&gt;This is Part 1.&lt;/strong&gt;”&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Message 2: “&lt;strong&gt;This is Part 2.&lt;/strong&gt; “&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Message PDU should be&lt;br /&gt;&lt;br /&gt;[caption id="attachment_166" align="alignnone" width="544" caption="Message 1 - PDU"]&lt;a href="http://hiteshagja.files.wordpress.com/2010/04/pdu-13.jpg"&gt;&lt;img class="size-full wp-image-166" title="PDU-1" src="http://hiteshagja.files.wordpress.com/2010/04/pdu-13.jpg" alt="Message 1 - PDU" width="544" height="32" /&gt;&lt;/a&gt;[/caption]&lt;br /&gt;&lt;br /&gt;[caption id="attachment_165" align="alignnone" width="544" caption="Message 2 - PDU"]&lt;a href="http://hiteshagja.files.wordpress.com/2010/04/pdu-2.jpg"&gt;&lt;img class="size-full wp-image-165" title="PDU-2" src="http://hiteshagja.files.wordpress.com/2010/04/pdu-2.jpg" alt="Message 2 - PDU" width="544" height="32" /&gt;&lt;/a&gt;[/caption]&lt;br /&gt;&lt;br /&gt;That’s it , you are done !!&lt;br /&gt;&lt;br /&gt;Things to know before sending Long SMS is , UDH will occupy 6 octets so original message size should be reduce.&lt;br /&gt;&lt;br /&gt;Please let me know if I am missing something so I can update this post.&lt;br /&gt;&lt;div id="_mcePaste" style="position: absolute; left: -10000px; top: 0pt; width: 1px; height: 1px; overflow: hidden;"&gt;&lt;br /&gt;&lt;br /&gt;Send Long SMS/Multipart SMS/Concatenated SMS&lt;br /&gt;&lt;br /&gt;Send Long SMS/Multipart SMS/Concatenated SMS&lt;br /&gt;&lt;br /&gt;Here I am writing about most awaited post of my blog with great excitement.  In this post I will explain you , how to send long SMS or multipart SMS or concatenated SMS. Before I explain you I want to share my experience during searching for the secret of long SMS. When I started searching on internet about “how to send long sms”, I found resource on wiki which explains the basic of long SMS and PDU format for sending long SMS. But this page (wiki) contains link at bottom of the page and this link (trust me) one of the best resource on the internet to learn about concatenated SMS. Here is the link if you want to read this blog : “http://mobiletidings.com/2009/02/18/combining-sms-messages/”.  But still I am having same problem not able to send long SMS using AT command. But reading this blog I am sure that I am missing something in my PDU which cause problem. What I have done is I have contacted Franco (owner of “http://www.franco7777.net/”), who is one of the commenter on “http://mobiletidings.com/2009/02/18/combining-sms-messages/” blog. He gave me very nice response and explains me where my mistake is.  And after that I have got the clear idea about sending long SMS over network.&lt;br /&gt;&lt;br /&gt;Now I want to show you how you can send long SMS. But before reading this post further I will strongly recommend you to read “http://www.dreamfabric.com/sms/” and grab basic idea about SMS PDU structure. When you send single SMS ( &amp;lt;= 160 Character) there is not UDH exist in the message but when you try to send long SMS ( &amp;gt; 160 Character) you need to add this UDH field into the message PDU. So the basic question is how to add this header in to the message. One more thing you should know to send concatenated SMS, and the thing is when you send single SMS there is no User Data Header so little less confusion and you don’t need to add padding bit to encode your message into GSM 7-bit encoding scheme but if you are going to send concatenated SMS, UDHL is exist and it is in septets so you need to add one padding bit compulsory to encode your SMS. Read “http://mobiletidings.com/2009/02/18/combining-sms-messages/” blog to get the clear idea because I don’t want to post same content again in this post.&lt;br /&gt;&lt;br /&gt;So basically there are 2 secret to send long SMS&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;Add User Data Header&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Add Padding bit to encode your message.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;If I want to send&lt;br /&gt;&lt;br /&gt;Message:&lt;br /&gt;&lt;br /&gt;Message 1: “&lt;strong&gt;This is Part 1.&lt;/strong&gt;”&lt;br /&gt;&lt;br /&gt;Message 2: “&lt;strong&gt;This is Part 2.&lt;/strong&gt; “&lt;br /&gt;&lt;br /&gt;Message PDU should be&lt;br /&gt;&lt;br /&gt;******Image*******&lt;br /&gt;&lt;br /&gt;That’s it , you are done !!&lt;br /&gt;&lt;br /&gt;Things to know before sending Long SMS is , UDH will occupy 6 octets so original message size should be reduce.&lt;br /&gt;&lt;br /&gt;Please let me know if I am missing something so I can update this post.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-5612338618547073813?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/5612338618547073813/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=5612338618547073813&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5612338618547073813?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5612338618547073813?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/bcC5KsQvuG0/send-long-smsmultipart-smsconcatenated.html" title="Send Long SMS/Multipart SMS/Concatenated SMS" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2010/04/send-long-smsmultipart-smsconcatenated.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMMQno8fSp7ImA9WxBSE00.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-6655855199825318831</id><published>2009-12-20T01:46:00.000-08:00</published><updated>2009-12-20T01:48:03.475-08:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-12-20T01:48:03.475-08:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ASP.net" /><category scheme="http://www.blogger.com/atom/ns#" term="Other" /><category scheme="http://www.blogger.com/atom/ns#" term="Ajax" /><title>Avoid Using Updatepanel</title><content type="html">&lt;p style="text-align: justify;"&gt;&lt;strong&gt;Updatepanel&lt;/strong&gt; is part of AJAX Extension 1.0 and later provided by Microsoft. Update panel is used to hide page refresh using some standard mechanism. But What about speed? In my experience updatepanel is the best solution if your page does not contain large number of components. And make sure controls you used is supported by updatepanel. Because controls like GridView,Treeview and more , are not supported by updatepanel. So you can expect behaviours change if you put it inside updatepanel.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;I have recently trusted on updatepanel and used in my page where speed is the primary concern and that page was almost dead. So avoid using updatepanel where speed is primary requirement.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;I have used Prototype AJAX in my application. It’s faster and better. Give it a try.  I tried to use jQuery AJAX but it has not that much support for &lt;strong&gt;ASP.net 2.0&lt;/strong&gt;, its very good if you working on ASP.net 3.0 or ASP.net 3.5 version of .net.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;So the conclusion is , avoid using updatepanel to get better speed , insted you can use &lt;em&gt;&lt;strong&gt;Prototype&lt;/strong&gt;&lt;/em&gt; or &lt;em&gt;&lt;strong&gt;jQuery&lt;/strong&gt;&lt;/em&gt; AJAX to get the best speed and performance of your application.  Googling around the web and you will get many working example of protory and jquery.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-6655855199825318831?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/6655855199825318831/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=6655855199825318831&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6655855199825318831?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6655855199825318831?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/cGmenUnySfM/avoid-using-updatepanel.html" title="Avoid Using Updatepanel" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/12/avoid-using-updatepanel.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0QEQnY_eyp7ImA9WxNQE0U.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-2443478051213880441</id><published>2009-09-19T12:39:00.000-07:00</published><updated>2009-09-19T12:41:43.843-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-09-19T12:41:43.843-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="MySQL" /><category scheme="http://www.blogger.com/atom/ns#" term="Visual Studio" /><title>MySQL With .Net 2.0/3.0/3.5</title><content type="html">&lt;p style="text-align:justify;"&gt;MySQL is open source database. We had always seen MySQL with PHP. Generally we know MySQL is database engine for PHP. It’s true because .net does not have inbuilt support for MySQL database. We need to install other tools to make it work perfectly. In order to work with MySQL in .net you need to install MySQL Server and MySQL Connector. You can create function and procedure in MySQL version 5.1 and later. At the same time you will get great user interface to manage database. You will get interface just like MS SQL server management studio. MySQL Connector is used to add database connectivity support in Visual Studio. Download Connector depending upon the .net framework you use and Visual studio you work on.  Version 5.1 GA (Generally Available) and later is recommended for .net framework 2.0 and higher.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Problems I faced:&lt;/strong&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;Syntax of MySQL is very different from MS SQL server.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Error console of MySQL is not that user friendly.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Migration of MS SQL Database to MySQL is quite difficult.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Because it’s not Microsoft product you won’t find any inbuilt programming level support. Ex. It’s really hard to work use LINQ if your backend is MySQL.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;a title="Download MySQL Database Server and Connector" href="http://dev.mysql.com/downloads/" target="_blank"&gt;Download Latest MySQL Database Server and Connector (Click Here).&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-2443478051213880441?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/2443478051213880441/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=2443478051213880441&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2443478051213880441?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2443478051213880441?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/P_4JIX-F2cQ/mysql-with-net-203035.html" title="MySQL With .Net 2.0/3.0/3.5" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/09/mysql-with-net-203035.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QFQX49fSp7ImA9WxNSEEw.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-2311414919935517943</id><published>2009-08-23T01:02:00.000-07:00</published><updated>2009-08-23T01:15:10.065-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-23T01:15:10.065-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ASP.net" /><category scheme="http://www.blogger.com/atom/ns#" term="Ajax" /><title>Enable Disable Controls During AJAX Postback</title><content type="html">Most of us use Microsoft AJAX Toolkit and Controls but we don’t know when Ajax Request starts and when it ends. Sometimes we need to do enabling and disabling controls during postback. This can be done using the code below.&lt;br /&gt;&lt;br /&gt;&lt;code lang="javascript"&gt;&lt;br /&gt;var _employee=null;&lt;br /&gt;var _department=null;&lt;br /&gt;var _subdepartment=null;&lt;br /&gt;&lt;br /&gt;function pageLoad(sender, args){&lt;br /&gt;// Register start request and end request event handler Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginRequest);&lt;br /&gt;Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequest); }&lt;br /&gt;&lt;br /&gt;// fired when ajax request starts&lt;br /&gt;function beginRequest(sender, args){&lt;br /&gt;_ employee = $get('ctl00_ContentPlaceHolder1_ddlemployee);&lt;br /&gt;_ department = $get('ctl00_ContentPlaceHolder1_ddldepartment);&lt;br /&gt;_ subdepartment = $get('ctl00_ContentPlaceHolder1_ddlsubdepartment);&lt;br /&gt;_ employee.disabled=true;&lt;br /&gt;_ department.disabled=true;&lt;br /&gt;_ subdepartment.disabled=true; }&lt;br /&gt;&lt;br /&gt;// fired when ajax request ends&lt;br /&gt;function endRequest(sender, args) {&lt;br /&gt;_ employee.disabled=false;&lt;br /&gt;_ department.disabled=false;&lt;br /&gt;_ subdepartment.disabled=false;&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Here I have added two event handlers to request manager class instance. Event will be fired when request starts or ends. Isn’t it easy? :)&lt;br /&gt;&lt;br /&gt;Ref : &lt;a href="http://mattberseth.com/blog/"&gt;http://mattberseth.com/blog/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-2311414919935517943?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/2311414919935517943/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=2311414919935517943&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2311414919935517943?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2311414919935517943?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/woeG22PX4dc/most-of-us-use-microsoft-ajax-toolkit.html" title="Enable Disable Controls During AJAX Postback" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/08/most-of-us-use-microsoft-ajax-toolkit.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUIFRX8-fip7ImA9WxJaGU4.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-5682125806239406175</id><published>2009-08-10T13:38:00.000-07:00</published><updated>2009-08-10T13:51:54.156-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-10T13:51:54.156-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Other" /><title>Online Money Transfer</title><content type="html">&lt;div style="text-align: justify;"&gt;This post is completely non-technical but useful in many places. I want to share my experience with different companies for online money transfer. Few days back, I planned to buy some product over internet but the only problem I faced was How to transfer money in foreign country? I look up many websites which provide this facility but amongst all I would recommend every to go with Xoom and MoneyBooker. I transferred money to china using Xoom. Nowadays, there are lots of options available for online money transfer. Options like Western Union, T/T are good but they charge more or need to study.&lt;br /&gt;&lt;/div&gt;&lt;p style="text-align: justify;"&gt;I found very nice alternate for online money transfer. Xoom.com. If you search “Online Money Transfer” in Google.com. You may find this website ranked first. Believe me Service is excellent. First time I had tried this website to credit money from &lt;strong&gt;PayPal to Indian Bank Account&lt;/strong&gt;. Money was transferred in few days and I got letter from xoom.com about this transaction.  Sound good!&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;I recently sent money to “Bank Of China”. This means that you can credit requested amount directly to the bank account. One of the nicest things about Xoom is that their executives call to recipient and confirm the details before they proceed.&lt;/p&gt;&lt;p style="text-align: justify;"&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGpzvxG9I/AAAAAAAABB8/cukM-FTviyE/s1600-h/xoom-online-payment-1.gif"&gt;&lt;img style="cursor: pointer; width: 400px; height: 378px;" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGpzvxG9I/AAAAAAAABB8/cukM-FTviyE/s400/xoom-online-payment-1.gif" alt="" id="BLOGGER_PHOTO_ID_5368438808648948690" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGqEHUyCI/AAAAAAAABCE/c5MV6odHmqk/s1600-h/xoom-online-payment-2.gif"&gt;&lt;img style="cursor: pointer; width: 400px; height: 378px;" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGqEHUyCI/AAAAAAAABCE/c5MV6odHmqk/s400/xoom-online-payment-2.gif" alt="" id="BLOGGER_PHOTO_ID_5368438813042722850" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGqeMnUbI/AAAAAAAABCM/DyFADDN-tN0/s1600-h/xoom-online-payment-3.gif"&gt;&lt;img style="cursor: pointer; width: 381px; height: 400px;" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGqeMnUbI/AAAAAAAABCM/DyFADDN-tN0/s400/xoom-online-payment-3.gif" alt="" id="BLOGGER_PHOTO_ID_5368438820044231090" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="text-align: justify;"&gt;Another website namely “Moneybooker” provides online money transfer. The feature I like in this website is escrow money. This is the best thing if you purchase product online.&lt;/p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCGqmlVczI/AAAAAAAABCU/lAD0wVi5axw/s1600-h/moneybooker-online-payment-.gif"&gt;&lt;img style="cursor: pointer; width: 399px; height: 400px;" src="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCGqmlVczI/AAAAAAAABCU/lAD0wVi5axw/s400/moneybooker-online-payment-.gif" alt="" id="BLOGGER_PHOTO_ID_5368438822295401266" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCGrNFjYtI/AAAAAAAABCc/mac0Mh5-dUE/s1600-h/moneybooker-online-payment3.gif"&gt;&lt;img style="cursor: pointer; width: 290px; height: 400px;" src="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCGrNFjYtI/AAAAAAAABCc/mac0Mh5-dUE/s400/moneybooker-online-payment3.gif" alt="" id="BLOGGER_PHOTO_ID_5368438832631079634" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCFs20oKhI/AAAAAAAABB0/vBBbYfD-CCk/s1600-h/moneybooker-online-payment2.gif"&gt;&lt;img style="cursor: pointer; width: 345px; height: 400px;" src="http://2.bp.blogspot.com/_nheDBb-3aDI/SoCFs20oKhI/AAAAAAAABB0/vBBbYfD-CCk/s400/moneybooker-online-payment2.gif" alt="" id="BLOGGER_PHOTO_ID_5368437761502620178" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-5682125806239406175?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/5682125806239406175/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=5682125806239406175&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5682125806239406175?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5682125806239406175?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/yQq_YJYah2A/online-money-transfer.html" title="Online Money Transfer" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_nheDBb-3aDI/SoCGpzvxG9I/AAAAAAAABB8/cukM-FTviyE/s72-c/xoom-online-payment-1.gif" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/08/online-money-transfer.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkcNRHwzfCp7ImA9WxJUFkU.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-4937530592717359844</id><published>2009-07-15T10:45:00.000-07:00</published><updated>2009-07-15T10:48:15.284-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-15T10:48:15.284-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Application Development" /><title>Read SMS Using AT Command</title><content type="html">Before I start explaining, you must be sure that your handset supports SMS read functionality using an AT command.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;How can I test whether my handset supports or not?&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Answer is pretty simple, try executing AT+CMGR=? AT Command. If it returns ”\r\nOK\r\n” then congratulation your handset modem supports Read SMS functionality.&lt;br /&gt;&lt;br /&gt;Reading an SMS from memory location is always a big headache J. I waste lot of time just to read an SMS using AT command.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;If you know SMS memory location then task will be simpler.&lt;/strong&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;    &lt;li&gt;First of all set memory type.  Use  AT+CPMS=”ME” command  to set memory from which you are going to read SMS.&lt;/li&gt;&lt;br /&gt;    &lt;li&gt;After that execute  AT+CMGR=”messageID”  to read message.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Tip :&lt;/em&gt;&lt;/strong&gt; Whenever you execute AT command never forget quotation mark (“), Carriage Return etc.&lt;br /&gt;&lt;br /&gt;You will get message text directly if you are working under TEXT mode. In case of PDU mode you need to convert PDU into Original Message Text by writing some algorithms.&lt;br /&gt;&lt;br /&gt;If you want &lt;strong&gt;indication for incoming SMS&lt;/strong&gt; in your application then you need to enable this functionality.&lt;br /&gt;&lt;br /&gt;Try “AT+CNMI=?” Command to test whether &lt;strong&gt;new message indication&lt;/strong&gt; functionality is available in your handset or not.&lt;br /&gt;&lt;br /&gt;If result does not contain any error and will return some parameters then congratulation again J&lt;br /&gt;&lt;br /&gt;Now, use "AT+CNMI=2,1,0,1" AT command to enable new message indication to TE (terminal equipment).&lt;br /&gt;&lt;br /&gt;Last but not the least, don’t forget to use "AT+CSMS=0" AT command set  &lt;strong&gt;ISO 8859-1 character set&lt;/strong&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-4937530592717359844?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/4937530592717359844/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=4937530592717359844&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/4937530592717359844?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/4937530592717359844?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/0X2khsTSTdI/read-sms-using-at-command.html" title="Read SMS Using AT Command" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/07/read-sms-using-at-command.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEEBQHg5eyp7ImA9WxJVF00.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-4305385194798041586</id><published>2009-07-04T04:22:00.000-07:00</published><updated>2009-07-04T04:24:11.623-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-04T04:24:11.623-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Application Development" /><title>Send SMS using AT Commands</title><content type="html">If you are writing an application which sends SMS using AT commands then, you must read this post. Few days ago I started to develop an application which is completely AT command based. Here I am going to explain the things that I learnt from experience.&lt;br /&gt;&lt;br /&gt;First and the foremost thing before you start developing an application based on AT command , know which mode (text/pdu) your mobile handset supports.&lt;br /&gt;&lt;br /&gt;If handset supports &lt;strong&gt;TEXT mode&lt;/strong&gt; then work is simple.&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;First you need to set text mode by using &lt;strong&gt;AT+CMFG=1&lt;/strong&gt; Command.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;And then use &lt;strong&gt;AT+CMGS=”+CellPhoneNumber” &amp;lt;enter&amp;gt;.&lt;/strong&gt;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;If command execute successfully then It will return &lt;strong&gt;“&amp;gt;”&lt;/strong&gt; as a response.  &lt;/li&gt;&lt;br /&gt; &lt;li&gt;After getting &lt;strong&gt;success response simply write your message&lt;/strong&gt; ex. “this is test SMS”. This will submit SMS to network and will return the Message ID.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;If you want to send long message i.e. greater than 160 character length message then, this is really very useful.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt; I will cover how to send long message in my succeeding posts.&lt;br /&gt;&lt;br /&gt; If handset supports &lt;strong&gt;PDU mode&lt;/strong&gt; then work will be little lengthy and need some more efforts. &lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;For PDU mode, you need to set pdu mode by using &lt;strong&gt;AT+CMFG=0&lt;/strong&gt; Command.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;And then write AT+CMGS=&amp;lt;length&amp;gt;&amp;lt;CR&amp;gt; command for modem to response. Here you can’t send the length of actual message. You need to convert the text into 7-bit or 8-bit encoding scheme. I included some useful links and sample application at the bottom of the page to accomplish this task.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;If command execute successfully then It will return &lt;strong&gt;“&amp;gt;”&lt;/strong&gt; as a response.  &lt;/li&gt;&lt;br /&gt; &lt;li&gt;After getting success response, send &lt;strong&gt;&amp;lt;PDU&amp;gt;&amp;lt;ctr-z/esc &amp;gt;&lt;/strong&gt; sequence. This will submit SMS to network and will return the Message ID.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;If you want to send long message i.e. greater than 160 character length message then, this is really very useful.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt; &lt;strong&gt;Reference :&lt;/strong&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;PDU message format : &lt;a href="http://www.dreamfabric.com/sms/"&gt;http://www.dreamfabric.com/sms/&lt;/a&gt;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Complete information about all AT Commands : &lt;a href="http://www.developershome.com/sms/operatingMode.asp"&gt;http://www.developershome.com/sms/operatingMode.asp&lt;/a&gt;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Text to PDU converter : &lt;a href="http://nerdlabs.org/tools/pdu.php"&gt;http://nerdlabs.org/tools/pdu.php&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt; &lt;strong&gt;Sample Application :&lt;/strong&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;PDU Decoder : &lt;a href="http://www.codeproject.com/KB/IP/PDUDecoder.aspx"&gt;http://www.codeproject.com/KB/IP/PDUDecoder.aspx&lt;/a&gt;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Sample Applications : &lt;a href="http://www.scampers.org/steve/sms/samples.htm"&gt;http://www.scampers.org/steve/sms/samples.htm&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;Do share new things with me.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-4305385194798041586?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/4305385194798041586/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=4305385194798041586&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/4305385194798041586?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/4305385194798041586?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/g_4u0_0dWuo/send-sms-using-at-commands.html" title="Send SMS using AT Commands" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/07/send-sms-using-at-commands.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUDQX89eip7ImA9WxJVFkk.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-7581380771906208026</id><published>2009-07-03T10:28:00.000-07:00</published><updated>2009-07-03T10:31:10.162-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-03T10:31:10.162-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>Google Search Engine Optimization Guidelines and Best Practices</title><content type="html">If you want better rank in Google Search Engine then, why not to follow guidelines given by Google itself. Read the article below to know what Google officials have to say for Search engine optimization.&lt;br /&gt;&lt;br /&gt;I have taken much of the information from the &lt;a title="Google Search Engine Starter Guide" href="http://www.google.com/webmasters/docs/search-engine-optimization-starter-guide.pdf" target="_blank"&gt;Google SEO guideline document&lt;/a&gt;. &lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;h4&gt;&lt;strong&gt;1. &lt;/strong&gt;&lt;strong&gt;Title Tag&lt;/strong&gt;&lt;/h4&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Title should be unique and accurately described the page content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Write unique page title for each page of your website. So that Google know how each page is different from other.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Title can be short or long. If your title is large then Google will show only portion of it.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Writing Title which has no relation to the page content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using Blank or unnamed title like “New Page 1” or “Untitled”&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using Single title for all the pages or group of pages.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using unneeded keywords in title.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;2. &lt;/strong&gt;&lt;strong&gt;Description Meta Tag&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Write description that would be both informative and interesting.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Unique description for each page.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Writing Title which has no relation to the page content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Writing Generic description like “page about...” or “this is the page that...” or something like that.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Filling it with only keywords.&lt;/li&gt;&lt;br /&gt; &lt;li&gt; Writing single description for each page.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;3. &lt;/strong&gt;&lt;strong&gt;Improve URLs Structure&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Use words in the URL link that are relevant to your website content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Proper directory structure should be there.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Unique URL to reach any document.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Using page name like “WebPage1.html”&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using long URLs or session ids or querystring variables.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using directory names like “Dir1” or “Folder1” etc.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using directory name that does not relate to page content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt; Mixing &lt;span style="text-decoration:underline;"&gt;www.&lt;/span&gt; And &lt;span style="text-decoration:underline;"&gt;without&lt;/span&gt; &lt;span style="text-decoration:underline;"&gt;www.&lt;/span&gt; URLS&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;4. &lt;/strong&gt;&lt;strong&gt;Website Navigation Should be Simple&lt;/strong&gt;&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Good linking structure from top to bottom with proper manner.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Use text links to navigate from one page to other. So that crawler can easily understand your website.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Use “breadcrumb” navigation (ex. Yoursitename &amp;gt;&amp;gt; items &amp;gt;&amp;gt; productname). Using breadcrumb navigation not only gives idea about where you are in the website, but also allow user to go to previous section very easily.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Use HTML site map page with XML site map file. This is huge benefit for SEO purpose.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Have meaningful and useful 404 page. Visit Google’s widget for 404 Page.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Creating complex navigation links web.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using image, javascript, dropdowns or flash object for website navigation.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Linking broken or dead links in Site map.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using unorganized sitemap page.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using vague message like “page not found”.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;5. &lt;/strong&gt;&lt;strong&gt;Quality of Content&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Write easy and meaningful content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Organize the different topics in the content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Include keywords that user always search. See the search volume of keywords that you have included in your content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Write Fresh and Unique content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Offer exclusive content or services.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Create content for users not for search engine. J &lt;a href="http://www.johnchow.com/"&gt;John chow&lt;/a&gt; is also telling the same thing please read more about John chow&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Spelling and Grammatical mistakes.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Coping existing content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Avoid unnecessary keywords.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;6. &lt;/strong&gt;&lt;strong&gt;Anchor tag text&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Write good text that describes the link properly. Ex. (&amp;lt;a href=”&lt;a href="../../../../../2009/06/06/six-useful-tips-to-earn-money-with-google-adsense/"&gt;http://hiteshagja.wordpress.com/2009/06/06/six-useful-tips-to-earn-money-with-google-adsense/”&amp;gt;Earn&lt;/a&gt; A Handsome Money With Google AdSense &amp;lt;/a&amp;gt;)&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Write short but descriptive text.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Stylize the link so use can differentiate it from normal text.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Write good anchor text for internal links so that Google can understand your website’s internal navigation.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Writing the generic content like “Click Here”.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Unrelated anchor text.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Lengthy anchor text like sentences or paragraph.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using CSS that makes text and link identical in look.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using excessive keywords.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;7. &lt;/strong&gt;&lt;strong&gt;Heading Tag&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Distinguish the main points and sub points and use heading tag appropriately.&lt;/li&gt;&lt;br /&gt; &lt;li&gt; Not use too many heading tags on the page. This will confuse user about the end of the content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Create proper page structure using heading tag.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Writing unrelated content in heading tag.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Avoid using heading tag where &amp;lt;em&amp;gt; or &amp;lt;strong&amp;gt; tag is appropriate.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Putting whole page content into heading tag.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Using tag if you only want to give style.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;8. &lt;/strong&gt;&lt;strong&gt;Image Tag&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Give reasonably good file and brief description about what the images is all about.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Write very good description when you use image as a link. (Must).&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Store all the website images under one common directory.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Use JPEG,GIF, PNG and BMP images because this are the common file types that all browser can easily understand.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Giving random file name like image1.jpeg or pic1.gif etc.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;Extremely lengthy file name&lt;/li&gt;&lt;br /&gt; &lt;li&gt; Writing keywords and long sentences in alt tag.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;9. &lt;/strong&gt;&lt;strong&gt;Use robots.txt Effectively&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Basic Idea : &lt;/strong&gt;robots.txt is the file which tells google.com about the pages that user do not wish to crawl. This file stay under the root directory. Google web master tool help you to create this file. &lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Use secure method for some sensible content.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;.htaccess, encryption, password protection are the better alternatives.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;Avoid&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Allowing search result kind of pages to be crawled.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt;10. &lt;/strong&gt;&lt;strong&gt; rel=”nofollow” attribute of Link (anchor tag)&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Use nofollow set to the link for which you don’t want to pass your reputation to other.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;Ex. If you want to inform others about the spam link then you can use nofollow for such link to avoid passing your reputation on to it.&lt;br /&gt;&lt;br /&gt;Use nofollow set to the link for which you don’t want to pass your reputation to&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;Write &amp;lt;meta name=”robots” content=”nofollow”&amp;gt; if you're interested in nofollowing all of the links on a page.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;This are the guidelines and best practices given by the Google Web Master team. Hope you enjoy reading this article.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-7581380771906208026?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/7581380771906208026/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=7581380771906208026&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/7581380771906208026?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/7581380771906208026?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/PDV8tlVfoUg/google-search-engine-optimization_03.html" title="Google Search Engine Optimization Guidelines and Best Practices" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/07/google-search-engine-optimization_03.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEUCRHY-eip7ImA9WxJWGEs.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-3487245528477017741</id><published>2009-06-24T10:37:00.000-07:00</published><updated>2009-06-24T10:57:45.852-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-24T10:57:45.852-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server" /><title>How to Improve slow running query performance using an Index ?</title><content type="html">I recently come across the situation where my query was running very slow. I written a perfect query with good inner join and with proper condition. Have a look at query and its executing plan.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.skywardsms.com/blog-images/SQL%20Server%20Index/Query-Execution-Plan-Before-indexing.jpg" alt="Query Execution Plan Before indexing" /&gt;&lt;br /&gt;&lt;br /&gt;As you can see in the image query takes 1.28 minute to execute successfully. And as you can see in the figure , cause for the problem is Clustered Index Scan on LotDetails Table.&lt;br /&gt;&lt;br /&gt;See the image below to get the clear idea about Clustered Index Scan Cost in this query.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.skywardsms.com/blog-images/SQL%20Server%20Index/Query-Execution-plan-Analysis.jpg" alt="Query Execution plan Analysis" /&gt;&lt;br /&gt;&lt;br /&gt;What I did was Created Non-clustered index on “SlipID” and added “Active” column into Included Columns.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.skywardsms.com/blog-images/SQL%20Server%20Index/Create-Index-On-Table.jpg" alt="Create Index On Table" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.skywardsms.com/blog-images/SQL%20Server%20Index/Include-columns-in-index.jpg" alt="Include columns in index" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After doing this when I run my query it took 0 second to execute successfully. And Clustered index scan is now turned into Index seek which is 3% of the total execution cost.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.skywardsms.com/blog-images/SQL%20Server%20Index/Query-Execution-Plan-After-indexing.jpg" alt="Query Execution Plan After indexing" /&gt;&lt;br /&gt;&lt;br /&gt;So use index as and when required to boost the performance of your T-SQL Query.&lt;br /&gt;&lt;br /&gt;Please correct me if I am wrong anywhere. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-3487245528477017741?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/3487245528477017741/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=3487245528477017741&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3487245528477017741?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3487245528477017741?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/7rwFzGPQSN0/how-to-improve-slow-running-query.html" title="How to Improve slow running query performance using an Index ?" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/06/how-to-improve-slow-running-query.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkEHRHoyeyp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-7628524415125531885</id><published>2009-06-06T02:43:00.000-07:00</published><updated>2009-06-19T07:10:35.493-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:10:35.493-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Tips For Google Adsense" /><title>Six Useful tips To Earn Money With Google Adsense</title><content type="html">I recently went through different articles written under &lt;a href="https://www.google.com/adsense/support/bin/static.py?page=tips.html"&gt;AdSense Help&lt;/a&gt; Section. All articles are worth reading if you are interested in earning good income with Google AdSense. I found some interesting tips  in this section&lt;br /&gt;&lt;ol&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Ad Type :&lt;/strong&gt; 336x280 Large Rectangle, 300x250 Medium Rectangle and the 160x600 Wide Skyscraper this are the good performer. &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Text + Image :&lt;/strong&gt; Always prefer or give a try to &lt;strong&gt;Text and image ad&lt;/strong&gt; combination.  &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Positioning Ads :&lt;/strong&gt; Ad just above the website content or just below the end of the content tends to perform well.  Also, ads placed in between the content are also a good performer. If are you running a blog then the case may be different. In case of blog the add unit on the right hand side and add unit just below each post is very good money making machine.     &lt;br /&gt;&lt;strong&gt;Reference :&lt;/strong&gt; &lt;a href="https://www.google.com/adsense/support/bin/answer.py?answer=43869"&gt;https://www.google.com/adsense/support/bin/answer.py?answer=43869&lt;/a&gt; &lt;a href="https://www.google.com/adsense/support/bin/answer.py?answer=17954"&gt;https://www.google.com/adsense/support/bin/answer.py?answer=17954&lt;/a&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;Wider ad formats tend to be more reader-friendly. &lt;/li&gt;&lt;br /&gt; &lt;li&gt;Try putting as many ads you can in page. Right now you can place only 3 ads per page.  &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Colour :&lt;/strong&gt; Change link colour, ad content colour and title colour depending upon your webpage colour scheme.  The impact of using this technique is user would have difficult to understand that whether it’s google ad your website link.&lt;/li&gt;&lt;br /&gt;&lt;/ol&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;strong&gt;Reference :&lt;/strong&gt; &lt;a href="https://www.google.com/adsense/support/bin/answer.py?answer=17957"&gt;https://www.google.com/adsense/support/bin/answer.py?answer=17957&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; Click on the link below to find out all the useful tips given by the google for adsense.&lt;br /&gt;&lt;br /&gt;&lt;a href="https://www.google.com/adsense/support/bin/static.py?page=tips.html"&gt;https://www.google.com/adsense/support/bin/static.py?page=tips.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Note : I have just try to summarise whatever is written in Google Adsense help section. All credit for this goes to Google Adsense Team.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-7628524415125531885?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/7628524415125531885/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=7628524415125531885&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/7628524415125531885?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/7628524415125531885?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/ziGWq5C4i_s/six-useful-tips-to-earn-money-with.html" title="Six Useful tips To Earn Money With Google Adsense" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/06/six-useful-tips-to-earn-money-with.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UAQnk4fyp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-2724301386316482314</id><published>2009-06-05T23:26:00.000-07:00</published><updated>2009-06-19T07:20:43.737-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:20:43.737-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>Right Keyword Selection for SEO</title><content type="html">In this post I am going to tell you how good keyword selection can affect your site in general.&lt;br /&gt;&lt;p style="text-align:justify;"&gt;You open a search engine website , typed some search word(s) and press search button and in return search engine will give you number of results that matches your criteria. So here is my point ? &lt;strong&gt;How search engine will return those thousands or millions or billions&lt;/strong&gt; results? Well, the answer is simple by looking at each page and search for the term you entered.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;So when you are selecting keyword for search engine optimization you should think from the client perspective.&lt;br /&gt;&lt;br /&gt;Let me explain by example , suppose you have written &lt;em&gt;“Software Consultant India”&lt;/em&gt; , What will search engine do when you hit search button,&lt;br /&gt;&lt;br /&gt;It will return&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;all the pages containing the exact phrase “Software Consultant India”&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages containing the words “Software”, “Consultant” and “India” with nearby relation.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages containing the word “Software”, “Consultant” and “India” without looking closeness in mind&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages that have links that contain this “Software Consultant India” phrase&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages that has the word “Software”&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages that has the word “Consultant”&lt;/li&gt;&lt;br /&gt; &lt;li&gt;all the pages that has the word “India”&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;So choose the right keyword you will surely get better rank in search engine.&lt;br /&gt;&lt;p style="text-align:justify;"&gt;One more thing to remember is that don’t ever include irrelative keywords in your page. What will happen in that case, even if people found your web site it will be useless for them because your site contain different information than they are looking for.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Bottom line is that Use right keywords and relative to your domain or business. &lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;At any point if you feel that I am wrong then don't hasitate to post a comment with correction.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-2724301386316482314?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/2724301386316482314/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=2724301386316482314&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2724301386316482314?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/2724301386316482314?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/f2iD-BVmzso/right-keywords-selection-for-seo.html" title="Right Keyword Selection for SEO" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/06/right-keywords-selection-for-seo.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0ABQ345eyp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-6777368768763116515</id><published>2009-06-05T23:23:00.000-07:00</published><updated>2009-06-19T07:29:12.023-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:29:12.023-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server" /><title>Database Publishing Wizard - SQL server 2005</title><content type="html">The topic is self explanatory :).&lt;br /&gt;&lt;p style="text-align:justify;"&gt;What would you do if you want to generate script that contains data and schema too. To generate script with schema is pretty simple but what about data. Microsoft Database Publishing Wizard is the tool that work with SQL server 2005 to generate that kind of script. Below are the steps to get started.&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 1&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-wizard-.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 2&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step1.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 3&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step3.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 4&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step4.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 5&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step5.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 6&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step6.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 7&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step7.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;strong&gt;Step 8&lt;br /&gt;&lt;img src="http://www.skywardsms.com/data%20publishing%20wizard/database-publishing-step8.jpg" alt="database publishing wizard" /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;this is the example of database publishing wizard 1.1. I have not used the versions after 1.1 because this version served all my purpose.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;&lt;a title="Microsoft Database Publishing Wizard" href="http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&amp;amp;displaylang=en" target="_blank"&gt;Download Microsoft SQL Server Database Publishing Wizard 1.1&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;if you are sql server 2008 user then you can not use this :) because good news is that sql server 2008 has this wizard by default.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;Please follow &lt;a href="http://www.kodyaz.com/articles/sql-server-script-data-with-generate-script-wizard.aspx"&gt;http://www.kodyaz.com/articles/sql-server-script-data-with-generate-script-wizard.aspx&lt;/a&gt; link for sql server 2008 database publishing.&lt;/p&gt;&lt;br /&gt;&lt;p style="text-align:justify;"&gt;Share your thought with me !!  :))&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-6777368768763116515?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/6777368768763116515/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=6777368768763116515&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6777368768763116515?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6777368768763116515?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/8hnNxdCR3Gw/sql-server-2005-database-publishing.html" title="Database Publishing Wizard - SQL server 2005" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/06/sql-server-2005-database-publishing.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UHQX45cSp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-6537265049356076942</id><published>2009-06-05T23:21:00.000-07:00</published><updated>2009-06-19T07:20:30.029-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:20:30.029-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>First step towards the SEO</title><content type="html">I would not go into detail, I want you to take some action now. Do the things below if it is applicable to your web site.&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Remove Flash&lt;/strong&gt;&lt;br /&gt;Flash is useless if you want better ranking in search engine. it does not cater any purpose.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Convert image into text&lt;/strong&gt;&lt;br /&gt;If you have image in your page that contain simple plain text then better you should use real text instead of image. More content on your page better your ranking in search engine.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;strong&gt; &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt; &lt;li&gt;&lt;strong&gt;Enrich content with good keywords&lt;/strong&gt;&lt;br /&gt;If you have enough content for your website then make sure your content is enriched with better keyword. Better keyword matters a lot. To choose best keywords you can use &lt;a title="Google Keyword Suggestion Tool" href="https://adwords.google.com/select/KeywordToolExternal" target="_blank"&gt;Google Keyword Suggestion tool&lt;/a&gt;. &lt;em&gt;&lt;span style="color:#888888;"&gt;&lt;span style="text-decoration: underline;"&gt;&lt;span style="color:#000000;"&gt;Use heading tag, bullet list, bold, Italic effect.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/em&gt;&lt;/li&gt;&lt;br /&gt; &lt;li&gt;If Possible, &lt;strong&gt;Navigation Links&lt;/strong&gt; should have proper keywords in it.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-6537265049356076942?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/6537265049356076942/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=6537265049356076942&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6537265049356076942?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/6537265049356076942?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/2YHlNLIf4Ak/first-step-towards-seo.html" title="First step towards the SEO" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/06/first-step-towards-seo.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0UFQHY6cSp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-8557461875437743729</id><published>2009-05-31T13:02:00.000-07:00</published><updated>2009-06-19T07:20:11.819-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:20:11.819-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>SEO - Title and Description Tag</title><content type="html">&lt;div align="justify"&gt;&lt;strong&gt;Title tag&lt;/strong&gt; is very important if you want to have good page ranking in major search engine. Title tag now only tells the browser about the page’s title but it’s the &lt;strong&gt;SUBJECT&lt;/strong&gt; line for GOOGLE kind of search engine.&lt;/div&gt;&lt;br /&gt;You can find title tag just below the tag.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Example of title tag :&lt;/strong&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;HEAD&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;TITLE&amp;gt;Your title text here&amp;lt;/TITLE&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;Make sure each of your web page has title tag and it’s well written. One more thing there should be only one title tag per page. :)&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;Also &lt;strong&gt;DESCRIPTION&lt;/strong&gt; tag is very important for SEO. Previously GOOGLE was not looking at description tag for keywords and contents , instead it was taking the required information from the page itself. But now GOOGLE is also looking at DESCRIPTION tag.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;There are three cases that you should keep in mind while writing &lt;strong&gt;META DESCRIPTION&lt;/strong&gt; tag.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;div align="justify"&gt;If GOOGLE found all the keywords from the description tag then, GOOGLE displays the whole content in the search.&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div align="justify"&gt;If GOOGLE found the partial keywords in the description tag then, in that case google takes the search content from the web page. &lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;div align="justify"&gt;But it GOOGLE does not found any keywords compare to page then it avoids DESCRIPTION tag as a whole. &lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;strong&gt;Example of META DESCRIPTION tag :&lt;/strong&gt; &lt;code&gt;&lt;br /&gt;&amp;lt;meta content="write" name="description"&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;If you want to learn more about HTML then you can visit the W3C School website.&lt;br /&gt;&lt;br /&gt;I thing I am clear enough :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-8557461875437743729?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/8557461875437743729/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=8557461875437743729&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/8557461875437743729?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/8557461875437743729?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/6GDo_CXxyic/seo-title-and-description-tag.html" title="SEO - Title and Description Tag" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/05/seo-title-and-description-tag.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YMSHk_eyp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-1774254443537395441</id><published>2009-05-24T05:01:00.001-07:00</published><updated>2009-06-19T07:19:49.743-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:19:49.743-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>How do you know that your page is in Google index?</title><content type="html">After you add your page into Google search index, It is obvious question arise in mind that does my web page properly indexed in Google or not. If this is the case, then you should try the following search terms in Google Search to know the current scenario of your web page.&lt;br /&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;try &lt;span class="Apple-style-span" style="FONT-WEIGHT: bold"&gt;&lt;span class="Apple-style-span" style="FONT-STYLE: italic"&gt;&lt;span class="Apple-style-span"&gt;cache:http://hiteshagja.blogspot.com&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;(change domain name)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This will show that your page is in Google Cache or not.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Also try &lt;span class="Apple-style-span" style="FONT-WEIGHT: bold"&gt;&lt;span class="Apple-style-span" style="FONT-STYLE: italic"&gt;&lt;span class="Apple-style-span"&gt;&lt;span class="Apple-style-span"&gt;site:skywardsms.com -abcdefg&lt;/span&gt;&lt;span class="Apple-style-span"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;(change domainname)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="TEXT-ALIGN: justify"&gt;This search term tells the Google that please show me the pages according to domain which does not contain the word abcdefg. So you will get all the pages from the Google from your domain which does not contain the world abcdefg.&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="TEXT-ALIGN: justify"&gt;If you don’t find anything in the above search term then simply type your domain name in search textbox and press search button. If your site is in Google database then you will see in the search page otherwise it’s not. This is the case with all the search engines. You can try this thing in all the search engines.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-1774254443537395441?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/1774254443537395441/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=1774254443537395441&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/1774254443537395441?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/1774254443537395441?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/KYU36kl8DRE/how-do-you-know-that-your-page-is-in.html" title="How do you know that your page is in Google index?" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/05/how-do-you-know-that-your-page-is-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YBRnc5fip7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-3846124749447327779</id><published>2009-05-23T05:13:00.000-07:00</published><updated>2009-06-19T07:19:17.926-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:19:17.926-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Search Engine Optimization" /><category scheme="http://www.blogger.com/atom/ns#" term="SEO" /><title>Search Engine Basics</title><content type="html">&lt;ul&gt;&lt;li&gt;Search engine is the place where you can search millions of web pages and directories for your desired search term. &lt;/li&gt;&lt;li&gt;Search engine uses thousands of computers that use software known as spiders or robots. &lt;/li&gt;&lt;li&gt;In case of Google its &lt;a href="http://en.wikipedia.org/wiki/Googlebot"&gt;Google Bot &lt;/a&gt;&lt;/li&gt;&lt;li&gt;Two major search directories present in the web are &lt;a href="http://dir.yahoo.com/"&gt;Yahoo!&lt;/a&gt; and &lt;a href="http://www.dmoz.org/"&gt;Open directory project &lt;/a&gt;&lt;/li&gt;&lt;li&gt;Different search engine uses different method for ranking of web page&lt;/li&gt;&lt;li&gt;Most of the search sites result come from different source. &lt;/li&gt;&lt;li&gt;Most popular search engines are&lt;/li&gt;&lt;/ul&gt;&lt;ol&gt;&lt;li&gt;&lt;a href="http://www.google.com/"&gt;Google.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.aol.com/"&gt;AOL.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.yahoo.com/"&gt;Yahoo.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.msn.com/"&gt;MSN.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.askjeeves/"&gt;AskJeeves.com&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.infospace.com/"&gt;InfoSpace.com &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.altavista.com/"&gt;AltaVista.com &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.overture.com/"&gt;Overture.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.netscape.com/"&gt;Netscape.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.earthlink.com/"&gt;EarthLink.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.looksmart.com/"&gt;LookSmart.com&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.lycos.com/"&gt;Lycos.com&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-3846124749447327779?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/3846124749447327779/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=3846124749447327779&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3846124749447327779?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3846124749447327779?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/IWvMOGmXgFE/search-engine-basics.html" title="Search Engine Basics" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/05/search-engine-basics.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0IDR344fCp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-3495959796982762549</id><published>2009-05-19T12:46:00.000-07:00</published><updated>2009-06-19T07:26:16.034-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:26:16.034-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Visual Studio 2010" /><title>Microsoft Visual Studio 2010 and .Net Framwork 4.0</title><content type="html">Microsoft VS 2010 CTP is just released and it’s better than before.&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:180%;"&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&amp;amp;displaylang=en"&gt;&lt;span style="font-size:85%;"&gt;Download VS 2010 Community Technology Preview (CTP)&lt;/span&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;You can also learn the complete list of features provided in the vs2010.&lt;br /&gt;Follow the link : &lt;a href="http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx"&gt;http://www.microsoft.com/visualstudio/en-us/products/2010/default.mspx&lt;br /&gt;&lt;/a&gt;Or direct download from Microsoft. &lt;a href="http://download.microsoft.com/download/C/D/3/CD39BB69-35CC-458A-B4EB-2F928B58FB4B/VisualStudio2010_ProductOverview.pdf"&gt;PDF&lt;/a&gt; &lt;a href="http://download.microsoft.com/download/C/D/3/CD39BB69-35CC-458A-B4EB-2F928B58FB4B/VisualStudio2010_ProductOverview.xps"&gt;XPS&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-3495959796982762549?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/3495959796982762549/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=3495959796982762549&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3495959796982762549?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/3495959796982762549?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/BRpV6zOO1dg/microsoft-visual-studio-2010-and-net.html" title="Microsoft Visual Studio 2010 and .Net Framwork 4.0" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/05/microsoft-visual-studio-2010-and-net.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0INRHw5fip7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-5115442871816780567</id><published>2009-05-15T23:58:00.000-07:00</published><updated>2009-06-19T07:26:35.226-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:26:35.226-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Mobile Application Development" /><title>Working with AT Commands (Mobile Application)</title><content type="html">&lt;div align="justify"&gt;In this article I am going to explain how you can use at commands for mobile application development. Before I am going to explain AT command I want to share some knowledge with you. AT commands are for GSM modem only so in order to execute at command you need mobile with GSM modem. Each mobile has either a Text mode or PDU mode or both. Depend upon the different mobile manufacture. So there are different at commands for different modes.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#000000;"&gt;How can you execute AT Command ? &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;You can execute AT commands by programmatically or by HyperTerminal.&lt;br /&gt;Go to Start &gt;&gt; Programs &gt;&gt; Accessories &gt;&gt; Communications &gt;&gt; HyperTerminal&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;And then connect your mobile using serial port and start play with AT commands.&lt;br /&gt;&lt;br /&gt;If you want to develop a mobile application then you should go with C/C++, VB, VB.net, C#.net. My choice of language is C#.net.&lt;/div&gt;&lt;div align="justify"&gt;&lt;/div&gt;&lt;div align="justify"&gt;.net has a class for &lt;a href="http://msdn.microsoft.com/en-us/library/system.io.ports.serialport.aspx"&gt;serial port&lt;/a&gt; communication which you can use directly and built your application. You need the deep knowledge of threading and delegate to develop such kind of application.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div align="justify"&gt;Capabilities of AT commands are seamless. By using AT commands you can send SMS,Receive SMS, Call etc... In short you can handle all your mobile handset function by using your PC.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;span style="color:#000000;"&gt;&lt;strong&gt;AT commands for Text Mode :&lt;/strong&gt; &lt;/span&gt;&lt;br /&gt;AT+CSMS Select Message Service&lt;br /&gt;AT+CPMS Preferred Message Storage&lt;br /&gt;AT+CMGF Message Format&lt;br /&gt;AT+CSCA Service Centre Address&lt;br /&gt;AT+CSMP Set Text Mode Parameters&lt;br /&gt;AT+CSDH Show Text Mode Parameters&lt;br /&gt;AT+CSCB Select Cell Broadcast Message Types&lt;br /&gt;AT+CSAS Save Settings&lt;br /&gt;AT+CRES Restore Settings&lt;br /&gt;AT+CNMI New Message Indications to TE&lt;br /&gt;AT+CMGL List Messages&lt;br /&gt;AT+CMGR Read Message&lt;br /&gt;AT+CNMA New Message Acknowledgement to ME/TA&lt;br /&gt;AT+CMGS &lt;em&gt;&lt;strong&gt;Send Message&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;AT+CMSS Send Message from Storage&lt;br /&gt;AT+CMGW Write Message to Memory&lt;br /&gt;AT+CMGD Delete Message&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;&lt;strong&gt;AT commands for PDU Mode :&lt;/strong&gt; &lt;/span&gt;&lt;br /&gt;AT Attention command&lt;br /&gt;AT+CMGL List message&lt;br /&gt;AT+CMGR &lt;strong&gt;&lt;em&gt;Read message&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;AT+CMGS &lt;strong&gt;&lt;em&gt;Send message &lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;AT+CMSS Send from storage&lt;br /&gt;AT+CMGW Write message to memory&lt;br /&gt;AT+CMGD &lt;strong&gt;&lt;em&gt;&lt;span style="color:#000000;"&gt;Delete message &lt;/span&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;You can download complete AT command list from the links below.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;&lt;strong&gt;&lt;span style="color:#000000;"&gt;For text mode :&lt;/span&gt;&lt;/strong&gt;&lt;/div&gt;&lt;a href="http://sw.nokia.com/id/95672052-6c77-488d-a055-acef77e4cdc5/AT_Command_Set_For_Nokia_GSM_And_WCDMA_Products_v1_2_en.pdf"&gt;&lt;span style="color:#000000;"&gt;Download PDF&lt;/span&gt;&lt;/a&gt;&lt;span style="color:#000000;"&gt;&lt;br /&gt;&lt;strong&gt;For pdu mode :&lt;/strong&gt;&lt;br /&gt;&lt;/span&gt;&lt;a href="http://developer.sonyericsson.com/community/servlet/JiveServlet/download/120569-1459/dg_at_2006--08_r5a%5B1%5D.pdf;jsessionid=26AAFD9AAB9E79F5186FB41A98DDD5F4"&gt;&lt;span style="color:#000000;"&gt;Download PDF&lt;/span&gt;&lt;/a&gt;&lt;span style="color:#000000;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div align="justify"&gt;&lt;br /&gt;These two files contain the detailed information on what are the commands for Mobile Handset and what will be the output of each command. It is easy believe me !!&lt;/div&gt;&lt;br /&gt;&lt;div align="justify"&gt;&lt;strong&gt;NOTE :&lt;/strong&gt; all the content I wrote is related to mobile application development using AT commands. AT commands are very useful for serial port communication with attached device on serial port.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-5115442871816780567?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/5115442871816780567/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=5115442871816780567&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5115442871816780567?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/5115442871816780567?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/dXsRn3bar0M/working-with-at-commands-mobile.html" title="Working with AT Commands (Mobile Application)" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/05/working-with-at-commands-mobile.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0EDRn8zfip7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-1002691278373170420</id><published>2009-04-30T10:37:00.000-07:00</published><updated>2009-06-19T07:27:57.186-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:27:57.186-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Javascript" /><category scheme="http://www.blogger.com/atom/ns#" term="ASP.net" /><title>ASP.net - Unterminated String Constants</title><content type="html">&lt;div align="justify"&gt;This is common JavaScript error occurred while working with asp.net. I have faced this problem numerous times and believe me this is really very cumbersome error. This error occurs because of badly written JavaScript or due to access permission to the particular file, folder or image(s). Sometimes in your code if you have written path which does not exist in your .net web application. This kind error may occur. Friends, I have got this error many times and trust me each and every time its tuff to find where the problem is. Even my colleagues got this kind error many times. I have searched a lot about this error on Internet but not able to find the exact solution. Everybody is saying that it’s because of unclosed quotation mark in JavaScript. It’s true but not in every case.&lt;/div&gt;&lt;div align="justify"&gt;&lt;br /&gt;In addition, what happens sometime you may not get this error while you work locally and the time when you deploy it to web-server you will get ‘unterminated string constant’ error. Am I correct ?&lt;/div&gt;&lt;p align="justify"&gt;Here are the checklists/suggestions to resolve this error.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Check you javascript for unclosed quotation mark. Check inline as well as reference JavaScript file. Starts with inline JavaScript.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Give proper permission (rights) to directory under which your aspx page laying. Ex. Rights for IIS user, ASP.net process.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Also check permission (rights) for image directory, if you are working with images.&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Check for the hard coded path in the CS(Class file in C#) ,if any, check existence for the path.&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;I hope the solutions above might be useful to resolve unterminated string constants error.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-1002691278373170420?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/1002691278373170420/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=1002691278373170420&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/1002691278373170420?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/1002691278373170420?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/jrNHuaDMCeA/aspnet-unterminated-string-constants.html" title="ASP.net - Unterminated String Constants" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/04/aspnet-unterminated-string-constants.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0AFR385eCp7ImA9WxJWFE8.&quot;"><id>tag:blogger.com,1999:blog-749641101091571906.post-9024389678318264790</id><published>2009-04-30T06:28:00.000-07:00</published><updated>2009-06-19T07:28:36.120-07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-19T07:28:36.120-07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="SQL Server" /><title>Query Performance Optimization</title><content type="html">We all know how to create database, how to create tables etc... But do we know how to improve query performance when your database growing. Imaging the situation when your table will have more than a million rows. Just think what will be the query output time??&lt;br /&gt;&lt;br /&gt;I personally working on the application where there are daily around more than 5000 transactions happens. So you can imagine what will be my table size after a few months. When I was writing this article, my table already has around ½ million rows.&lt;br /&gt;&lt;br /&gt;I personally feel that this kind of large database will teach you a lot about the real power of SQL Server and best practices.&lt;br /&gt;&lt;br /&gt;In my case, the query which was giving me result in less than a second, now taking more than 30 seconds. It’s because of half a million rows in transaction table. That’s the worst thing in terms of performance.&lt;br /&gt;&lt;br /&gt;Luckily, I got help from &lt;a href="http://blog.sqlauthority.com/"&gt;Mr. Pinal Dave&lt;/a&gt;, he is Most Valuable Person (MVP) , he is SQL Guru, he is founder of sqlauthority.com, he has written more than 900 blogs till now. He is lot more than that. He is well known personality in the IT world.&lt;br /&gt;He taught me and my of my co-workers, how to use joins, indexes and many more SQL related things. He solved my problem efficiently and also explain me the things he has done on tables. I learn a lot from that and I am confident that I can improve performance of large database.&lt;br /&gt;&lt;br /&gt;You can contact me for the SQL Query Optimization related issues.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/749641101091571906-9024389678318264790?l=hiteshagja.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://hiteshagja.blogspot.com/feeds/9024389678318264790/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=749641101091571906&amp;postID=9024389678318264790&amp;isPopup=true" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/9024389678318264790?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/749641101091571906/posts/default/9024389678318264790?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/blogspot/hiteshagja/~3/YOGUJdLZtzk/query-performance-optimization.html" title="Query Performance Optimization" /><author><name>HITESH AGJA</name><uri>http://www.blogger.com/profile/11397387401624250985</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="21" height="32" src="http://3.bp.blogspot.com/_nheDBb-3aDI/SgcZeNXV7FI/AAAAAAAAA3k/wry3lfli7v8/S220/DSC_0218.JPG" /></author><thr:total>0</thr:total><feedburner:origLink>http://hiteshagja.blogspot.com/2009/04/query-performance-optimization.html</feedburner:origLink></entry></feed>

