<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-6848214385407010493</id><updated>2012-02-01T19:07:16.480+13:00</updated><category term='asp'/><category term='Seo'/><category term='WAP'/><category term='Microsoft'/><category term='Youtube'/><category term='java'/><category term='Javascript'/><category term='ajax'/><category term='Blogger'/><category term='IIS'/><category term='Web Deployment'/><category term='API'/><category term='Visual Studio 2010'/><category term='Open Source'/><category term='Templates'/><category term='C#'/><category term='Tsql'/><category term='Browser'/><category term='Xml'/><category term='css'/><category term='sql'/><category term='Mozilla'/><category term='Free Editors'/><category term='Flickr'/><category term='Tools'/><category term='asp.net'/><category term='Jquery'/><category term='gridView'/><category term='Html'/><category term='Silverlight Examples'/><category term='Digg'/><category term='Addon'/><category term='Tips and Tricks'/><category term='Silverlight'/><category term='google'/><title type='text'>Web Development Help</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>67</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4328342281019564508</id><published>2011-05-03T19:26:00.004+13:00</published><updated>2011-05-03T19:42:39.866+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Jquery Auto Hide</title><content type='html'>Hi Guys today i come up with some cool example of JQuery. its a &lt;span style="font-weight: bold;"&gt;"Auto hide button or Div after some interval time "&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;if you seen in Gmail, when you send a mail or move the mail to any folder or if you do any operation you will see the confirm message and after some interval time it will hide automatically.&lt;br /&gt;like this:&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/-VwJf5HH_frw/Tb-h6A6A19I/AAAAAAAAAXA/qAT9Lk7o7f4/s1600/03-May-11%2B12-00-47%2BPM.png"&gt;&lt;img style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 17px;" src="http://2.bp.blogspot.com/-VwJf5HH_frw/Tb-h6A6A19I/AAAAAAAAAXA/qAT9Lk7o7f4/s320/03-May-11%2B12-00-47%2BPM.png" alt="" id="BLOGGER_PHOTO_ID_5602374479519995858" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;yes here is the &lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;source&lt;/span&gt; on same.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;blockquote&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script language="javascript"&amp;gt;&lt;br /&gt;(function($){&lt;br /&gt;$(document).ready(function() {&lt;br /&gt;    $("[AutoHide]").each(function() {&lt;br /&gt;        if (!isNaN($(this).attr("AutoHide"))) {&lt;br /&gt;            eval("setTimeout(function() {jQuery('#" + this.id + "').hide();}, " + parseInt($(this).attr('AutoHide')) * 1000 + ");");          &lt;br /&gt;        }&lt;br /&gt;    });&lt;br /&gt;});&lt;br /&gt;})(jQuery);&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;center&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;div id="div1Seconds" AutoHide="10" style="background: #ccc; border: solid 1px #333"&amp;gt;&lt;br /&gt;&amp;lt;input type="button" value="This Button will be hidden in 10 second."&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;div id="div3Seconds" AutoHide="15" style="background: #ccc; border: solid 1px #333"&amp;gt;&lt;br /&gt;&amp;lt;input type="button" value="This Button will be hidden in 15 second."&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/center&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;Demo :&lt;/span&gt; (refresh page to view the demo)&lt;br /&gt;&lt;br /&gt;&lt;script language="javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"&gt;&lt;/script&gt;&lt;script language="javascript"&gt;(function($){ $(document).ready(function() {$("[AutoHide]").each(function() {if (!isNaN($(this).attr("AutoHide"))) {eval("setTimeout(function() {jQuery('#" + this.id + "').hide();}, " + parseInt($(this).attr('AutoHide')) * 1000 + ");");}});});})(jQuery);&lt;/script&gt;&lt;br /&gt;&lt;div id="div1Seconds" autohide="10" style="background: none repeat scroll 0% 0% rgb(204, 204, 204); border: 1px solid rgb(51, 51, 51);"&gt;&lt;br /&gt;&lt;input value="This Button will be hidden in 10 second." type="button"&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;div id="div3Seconds" autohide="15" style="background: none repeat scroll 0% 0% rgb(204, 204, 204); border: 1px solid rgb(51, 51, 51);"&gt;&lt;br /&gt;&lt;input value="This Button will be hidden in 15 second." type="button"&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Hope it will likes you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-4328342281019564508?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4328342281019564508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2011/05/jquery-auto-hide.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4328342281019564508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4328342281019564508'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2011/05/jquery-auto-hide.html' title='Jquery Auto Hide'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/-VwJf5HH_frw/Tb-h6A6A19I/AAAAAAAAAXA/qAT9Lk7o7f4/s72-c/03-May-11%2B12-00-47%2BPM.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5134206331243972902</id><published>2011-01-05T07:23:00.002+13:00</published><updated>2011-01-05T07:28:25.179+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Deployment'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Add/ Remove rows using javascript or Jquery</title><content type='html'>Jquery is one of the great and coolest feature in the web. you can desing your application any thing as u want with  asynchronous call.&lt;br /&gt;here i have created one small application for adding or removing the rows from your tables.&lt;br /&gt;&lt;br /&gt;many times we are not sure how much length of user input is for ex. in case of&lt;br /&gt;address field we are not sure how much length of data is so that time this coolest add/remove rows function will use.&lt;br /&gt;just try it .&lt;br /&gt;&lt;br /&gt;here is the basic java script.&lt;br /&gt;&lt;blockquote&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt; Add/Remove Rows in Table &amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;script language="javascript"&amp;gt;&lt;br /&gt; function addRow(tableID) {&lt;br /&gt;&lt;br /&gt;  var table = document.getElementById(tableID);&lt;br /&gt;&lt;br /&gt;  var rowCount = table.rows.length;&lt;br /&gt;  var row = table.insertRow(rowCount);&lt;br /&gt;&lt;br /&gt;  var cell1 = row.insertCell(0);&lt;br /&gt;  var element1 = document.createElement("input");&lt;br /&gt;  element1.type = "checkbox";&lt;br /&gt;  cell1.appendChild(element1);&lt;br /&gt;&lt;br /&gt;  var cell2 = row.insertCell(1);&lt;br /&gt;  cell2.innerHTML = rowCount + 1;&lt;br /&gt;&lt;br /&gt;  var cell3 = row.insertCell(2);&lt;br /&gt;  var element2 = document.createElement("input");&lt;br /&gt;  element2.type = "text";&lt;br /&gt;  cell3.appendChild(element2);&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt; function deleteRow(tableID) {&lt;br /&gt;  try {&lt;br /&gt;  var table = document.getElementById(tableID);&lt;br /&gt;  var rowCount = table.rows.length;&lt;br /&gt;&lt;br /&gt;  for(var i=0; i&amp;lt;rowCount; i++) {&lt;br /&gt;   var row = table.rows[i];&lt;br /&gt;   var chkbox = row.cells[0].childNodes[0];&lt;br /&gt;   if(null != chkbox &amp;amp;&amp;amp; true == chkbox.checked) {&lt;br /&gt;    table.deleteRow(i);&lt;br /&gt;    rowCount--;&lt;br /&gt;    i--;&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;  }catch(e) {&lt;br /&gt;   alert(e);&lt;br /&gt;  }&lt;br /&gt; }&lt;br /&gt; function SubmitForm()&lt;br /&gt; {&lt;br /&gt;  // your form Validation code goes here ...&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt;&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;TABLE id="dataTable" width="350px" border="1"&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TH&amp;gt;Select&amp;lt;/TH&amp;gt;&lt;br /&gt;&amp;lt;TH&amp;gt;Sr. No.&amp;lt;/TH&amp;gt;&lt;br /&gt;&amp;lt;TH&amp;gt;Value&amp;lt;/TH&amp;gt;&lt;br /&gt;&amp;lt;/TR&amp;gt;&lt;br /&gt; &amp;lt;TR&amp;gt;&lt;br /&gt;  &amp;lt;TD&amp;gt;&amp;lt;INPUT type="checkbox" name="chk"/&amp;gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;  &amp;lt;TD&amp;gt; 1 &amp;lt;/TD&amp;gt;&lt;br /&gt;  &amp;lt;TD&amp;gt; &amp;lt;INPUT type="text" /&amp;gt; &amp;lt;/TD&amp;gt;&lt;br /&gt; &amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;/TABLE&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="button" value="Add Row" onclick="addRow('dataTable')" /&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="button" value="Delete Row" onclick="deleteRow('dataTable')" /&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="button" value="submit" onclick="SubmitForm()" /&amp;gt;&lt;br /&gt;&amp;lt;/BODY&amp;gt;&lt;br /&gt;&amp;lt;/HTML&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;hope u like it .,.... just commnet it.. the jquery example i will post it on my next post.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5134206331243972902?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5134206331243972902/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2011/01/add-remove-rows-using-javascript-or.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5134206331243972902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5134206331243972902'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2011/01/add-remove-rows-using-javascript-or.html' title='Add/ Remove rows using javascript or Jquery'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1968157456831426646</id><published>2010-07-18T18:46:00.006+13:00</published><updated>2010-07-18T21:57:45.537+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Jquery on blogspot</title><content type='html'>Hi,i thing you have implement so many jquery features on your application , but have you try this on your blogger ? nb not yet .. then try this code hope you like it.&lt;br /&gt;&lt;br /&gt;click on the below button it will show you the toggle .&lt;br /&gt;&lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;&lt;script type="text/javascript"&gt;$(function(){$("#butToggle").click(function(){$('#dvt').toggle(1000);});});&lt;/script&gt;&lt;style type="text/css"&gt;#dvt{width: 200px;height: 100px;border: solid 1px black;background-color:LightGrey;text-align:center; display:none;}&lt;/style&gt;&lt;br /&gt;&lt;div style="display: none;" id="dvt"&gt;Hi, Its working on Blogger Too..&lt;/div&gt;&lt;br /&gt;&lt;button id="butToggle"&gt;Toggle&lt;/button&gt;&lt;br /&gt;&lt;br /&gt;And Here is the code , just add this on your blogger and see the magic.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"&amp;gt; &amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;script type="text/javascript"&amp;gt; $(function(){$("#BtnToggle").click(function(){$('#divTogg').toggle(1000);});});&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;style type="text/css"&amp;gt; #divTogg{width: 200px;height: 100px;border: solid 1px black;background-color:LightGrey;text-align:center; display:none;}&amp;lt;/style&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;div id="dvt"&amp;gt; Hi, its working on Blogger too.&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;&amp;lt;button id="BtnToggle"&amp;gt; Click Me&amp;lt;/button&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is your css part you can design it accordingly.&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt; &amp;lt;style type="text/css"&amp;gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;  #divTogg&lt;/li&gt;&lt;br /&gt;&lt;li&gt;  {&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   width: 200px;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   height: 100px;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   border: solid 1px black;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   background-color:LightGrey;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   text-align:center;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;   display:none;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;  } &lt;/li&gt;&lt;br /&gt;&lt;li&gt; &amp;lt;/style&amp;gt; &lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;hope you like this ,if you have like this plz comment on it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-1968157456831426646?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1968157456831426646/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/07/jquery-on-blogspot.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1968157456831426646'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1968157456831426646'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/07/jquery-on-blogspot.html' title='Jquery on blogspot'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-9102036397224454806</id><published>2010-05-07T17:26:00.006+13:00</published><updated>2010-05-07T17:39:56.126+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>New looks on Google</title><content type='html'>Yesterday i open a Google for searching and i noticed that something get change with the google site, as you can see the look and feel of the search section is bit change , as you can say the font is also get changed , it one kind of visual look getting and also looking for nice as comparing with the previous one.&lt;br /&gt;&lt;br /&gt;&lt;b&gt; Wht's get Changed  and Wht's New added? &lt;/b&gt;&lt;br /&gt;New thing added is contextually relevant, left side Navigation on a Page. It will shows you  the most popular and relevant search tools to refine your search query. it contain Google Squarted, Universal Search . that get combine on the left hand side Search Panel.&lt;br /&gt;&lt;br /&gt;on &lt;span style="color: rgb(204, 153, 51);"&gt;Universal Search&lt;/span&gt; you can easily find the most relevant search . The top section  of  left hand side panel that suggest you the most genres result for the search and it will also give you the good way to easily switch to the different types of results . here you can find the opetion " Everythings" which will gives you can result on what exactly your looking for. on &lt;span style="color: rgb(153, 153, 0);"&gt;Google Squared&lt;/span&gt; ( now its on Google Lab) which will help you to compare the entites . it builds on the Google Squared Technology it shows you the related result on your search query. so you can easily explore the result on other related topics also.&lt;br /&gt;&lt;br /&gt;As you can see the color palette and logo is also get change which will keep the Goolge page as in modern look you can also see more on how the new design get change on this video.&lt;br /&gt;&lt;br /&gt;&lt;object height="385" width="450"&gt;&lt;param name="movie" value="http://www.youtube.com/v/C-rnxNFRAQA&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xd0d0d0&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/C-rnxNFRAQA&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xd0d0d0&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" height="385" width="450"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;As talking about &lt;span style="color: rgb(153, 153, 0); font-weight: bold;"&gt;Google Logo,&lt;/span&gt; you can easily see the Difference on it, new design logo is lighter than previous one and also a simple, the logo design get done on the new icons and hundreds of tiny design, as you can clearly see the previous logo "g" has shadow image and how its clear it get removing the blue color shadowing effect.&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/S-OXHlM9epI/AAAAAAAAAUg/mGEPWHF4QRw/s1600/logocompare.png"&gt;&lt;img style="cursor: pointer; width: 263px; height: 156px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/S-OXHlM9epI/AAAAAAAAAUg/mGEPWHF4QRw/s200/logocompare.png" alt="" id="BLOGGER_PHOTO_ID_5468380529059265170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;One more thing you can see on the &lt;span style="font-weight: bold; color: rgb(153, 153, 0);"&gt;Bottom section Search&lt;/span&gt; it also get change with the removing of Blue effects also.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/S-OZgi5GJsI/AAAAAAAAAUw/u3ifaIibWUc/s1600/footercompare.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 198px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/S-OZgi5GJsI/AAAAAAAAAUw/u3ifaIibWUc/s320/footercompare.png" alt="" id="BLOGGER_PHOTO_ID_5468383156959061698" border="0" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;there are few more little changes are going on , and its all in process you can see that on Google steps by step.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-9102036397224454806?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/9102036397224454806/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/05/new-looks-on-google.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9102036397224454806'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9102036397224454806'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/05/new-looks-on-google.html' title='New looks on Google'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ivbMBZX_-HU/S-OXHlM9epI/AAAAAAAAAUg/mGEPWHF4QRw/s72-c/logocompare.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-9184931093593803730</id><published>2010-04-30T02:25:00.004+13:00</published><updated>2010-06-11T18:21:07.333+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>cache-about-blank</title><content type='html'>i m using Fx( FireFox) Browser , and i have install google toolbar on it , one day i have just try this, just open a new tab and just for quracity i have click on "Google Pagespeed" icon.it get open a google search page with that   topic on " cache-about-blank" and decided to write a topic on it. i know u also come like this way.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;now wht is this &lt;span style="color: rgb(102, 255, 153);"&gt;cache:about:blank&lt;/span&gt; and mozilla .  &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;basically if you click on pagerank button it will show you cache version of site but if your not opening any site and still click on that button then it goes to google search option with "about:blank". On mozilla there is many setting are there , if u simply open a browser and type &lt;b&gt;about:config&lt;/b&gt; on the url it will shows you the various setting on the browser. there are lot many setting are there on all type connection, browser, server, service , so on&lt;br /&gt;don't change anything without any proper knowledge, other wise it get save and may be some problem get arise later on.&lt;br /&gt;&lt;br /&gt;but still if your interested to do so you can refer this &lt;a href="http://www.mozillatips.com/modules.php?op=modload&amp;amp;name=Top_List&amp;amp;file=index"&gt;mozillatips.com&lt;/a&gt;. or want more on how to customize the interface just refer this  &lt;a href="http://www.mozilla.org/unix/customizing.html" title="Customizing Mozilla"&gt;customize the interface&lt;/a&gt; . both are very much interesting to know more on Fx&lt;br /&gt;&lt;br /&gt;&lt;b&gt; if your using IE then &lt;/b&gt;&lt;br /&gt;if you open this on IE then may be on latest version you will never get such type if page on about:blank ,&lt;br /&gt;&lt;br /&gt;just try it , you will enjoy it.&lt;br /&gt;&lt;br /&gt;Refer This Post  :&lt;br /&gt;- &lt;a href="http://kirank.blog.com/2009/11/20/firefox-enter-username-and-password-for-localhost/"&gt;how to configure local-host setting on FireFox &lt;/a&gt;&lt;br /&gt;- &lt;a href="http://kirank.blog.com/2009/12/24/top-6-firefox-extensions-for-twitter-and-facebook/"&gt; Firefox Extensions for Twitter and Facebook &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-9184931093593803730?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/9184931093593803730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/04/cache-about-blank.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9184931093593803730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9184931093593803730'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/04/cache-about-blank.html' title='cache-about-blank'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4136748133585630742</id><published>2010-04-18T06:21:00.002+13:00</published><updated>2010-04-18T06:25:54.553+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Jquery AutoComplete Plugin</title><content type='html'>Hi yes long time back , i was quite busy with my life , fine today i come up with Jquery cool feature , i thing is very known to you  and its very useful while developing any application ,&lt;br /&gt;&lt;br /&gt;yes its " &lt;span style="color: rgb(153, 102, 51);"&gt;AutoComplete&lt;/span&gt;" plugin . Jquery has good plugin on auto-completion , which means that what ever you want to seach and if you search accordingly it will display the result on the same bases. yes on the same bases , now your very much interested to use this yes you can use this on your application, and make your search more attractive and more easy to user. here are the way you can add the code for auto completion tool.&lt;br /&gt;&lt;br /&gt;There are&lt;span style="color: rgb(0, 0, 153);"&gt; some good Features &lt;/span&gt;you will get over the AutoCompletion Tools .&lt;br /&gt;1. Just like a Drop down but with quite good help.&lt;br /&gt;2. just like DOM tree on xml&lt;br /&gt;3. Better window auto complete box.&lt;br /&gt;and may more.&lt;br /&gt;&lt;br /&gt;steps to add Jquery on your page.&lt;br /&gt;&lt;br /&gt;1. Put this code on your &amp;lt; head &amp;gt; section&lt;br /&gt; &amp;lt; script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js" &amp;gt; &amp;lt;/script &amp;gt;&lt;br /&gt; &amp;lt; script type='text/javascript' src='./jquery.autocomplete.js'&amp;gt; &amp;lt;/script &amp;gt;&lt;br /&gt;&lt;br /&gt;2.  add below form tag&lt;br /&gt;&amp;lt; form action="" onsubmit="return false;" &amp;gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;p &amp;gt;&lt;br /&gt; Enter City: &amp;lt; input type="text" id="CityLocal" value="" /&amp;gt;&lt;br /&gt;  &amp;lt; input type="button" value="Get Value" onclick="lookupLocal();" /&amp;gt;&lt;br /&gt;&amp;lt; /p &amp;gt;&lt;br /&gt;&lt;br /&gt;3. on your javascript code add this&lt;br /&gt;&lt;br /&gt;&amp;lt; script type="text/javascript" &amp;gt;&lt;br /&gt;function lookupLocal(){&lt;br /&gt; var oSuggest = $("#CityLocal")[0].autocompleter;&lt;br /&gt;&lt;br /&gt; oSuggest.findValue();&lt;br /&gt;&lt;br /&gt; return false;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;$(document).ready(function() {&lt;br /&gt; $("#CityAjax").autocomplete(&lt;br /&gt;  "autocomplete_ajax.cfm",&lt;br /&gt;  {&lt;br /&gt;   delay:10,&lt;br /&gt;   minChars:2,&lt;br /&gt;   matchSubset:1,&lt;br /&gt;   matchContains:1,&lt;br /&gt;   cacheLength:10,&lt;br /&gt;   onItemSelect:selectItem,&lt;br /&gt;   onFindValue:findValue,&lt;br /&gt;   formatItem:formatItem,&lt;br /&gt;   autoFill:true&lt;br /&gt;  }&lt;br /&gt; );&lt;br /&gt;&lt;br /&gt; $("#CityLocal").autocompleteArray(&lt;br /&gt;  [&lt;br /&gt;   "Aberdeen", "Ada", "Adamsville", "Addyston", "Adelphi", "Adena", "Adrian", "Akron",&lt;br /&gt;   "Albany", "Alexandria", "Alger", "Alledonia", "Alliance", "Alpha", "Alvada",&lt;br /&gt;   "Alvordton", "Amanda", "Amelia", "Amesville", "Amherst", "Amlin", "Amsden",  &lt;br /&gt;  ],&lt;br /&gt;  {&lt;br /&gt;   delay:10,&lt;br /&gt;   minChars:1,&lt;br /&gt;   matchSubset:1,&lt;br /&gt;   onItemSelect:selectItem,&lt;br /&gt;   onFindValue:findValue,&lt;br /&gt;   autoFill:true,&lt;br /&gt;   maxItemsToShow:10&lt;br /&gt;  }&lt;br /&gt; );&lt;br /&gt;});&lt;br /&gt;&amp;lt; /script &amp;gt;&lt;br /&gt;&lt;br /&gt;for the Example purpose i have declare few city name , you can add this on array as per your requirement and all.&lt;br /&gt;&lt;br /&gt;5. close the form section and run the page , it will show your the output like this way&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can download the source code and sample from here&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://plugins.jquery.com/project/jq-autocomplete" rel="nofollow" target="_blank"&gt; &lt;span style="color: rgb(0, 153, 0);"&gt;Download Here&lt;/span&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt; .&lt;/span&gt;&lt;br /&gt;&lt;a style="font-weight: bold; color: rgb(0, 153, 0);" href="http://www.pengoworks.com/workshop/jquery/autocomplete.htm" rel="nofollow" target="_blank"&gt; Demo Here&lt;/a&gt;&lt;span style="font-weight: bold; color: rgb(0, 153, 0);"&gt; .&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;hope you like it , if you have any query or comment plz leave a reply to full fill your query, thank you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-4136748133585630742?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4136748133585630742/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/04/jquery-autocomplete-plugin.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4136748133585630742'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4136748133585630742'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/04/jquery-autocomplete-plugin.html' title='Jquery AutoComplete Plugin'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-7405718852839348658</id><published>2010-03-15T19:22:00.001+13:00</published><updated>2010-03-15T19:24:06.130+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>How Google works</title><content type='html'>Google now explain there Business via These three videos in very nice manner . there are main three principles behind this is : Search ,apps , and Ads.&lt;br /&gt;according to Google Search is our core part , apps is main umbrella over all the software and Ads is a central business proposition.&lt;br /&gt;&lt;br /&gt;&lt;b&gt; Now you can see how Search get works : &lt;/b&gt;&lt;br /&gt; google Creats a Index of each web pages and manage them according to the category and evaluating that more than 200 Quality factor.as you can see google produces search in fraction of time,now you can think you fast there indexing is ?&lt;br /&gt;&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/BNHR6IQJGZs&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/BNHR6IQJGZs&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt; How Google Apps get work: &lt;/b&gt;&lt;br /&gt;till now google get introduces thousands of application or tools . all the application data is stores online, so its not specific to one computer.you can download that file anywhere on your mobile as well as on your pc too.&lt;br /&gt;&lt;object height="344" width="425"&gt;&lt;param name="movie" value="http://www.youtube.com/v/doHnLiAzQ5M&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1"&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;embed src="http://www.youtube.com/v/doHnLiAzQ5M&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;hl=en_US&amp;amp;feature=player_embedded&amp;amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" height="344" width="425"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;How Google search ads works : &lt;/b&gt;&lt;br /&gt;when you do search with google web search , that time you can see ads are also showing according to there results and all . ads search result offering very useful information for commercial queries . look at the below videos on how it exactly works.&lt;br /&gt;&lt;br /&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/ka4tCkYXHiE&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowScriptAccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/ka4tCkYXHiE&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;hope you like this videos , you can see it on http://www.google.com/howgoogleworks&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-7405718852839348658?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/7405718852839348658/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/03/how-google-works.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7405718852839348658'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7405718852839348658'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/03/how-google-works.html' title='How Google works'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-612825446993690650</id><published>2010-03-06T21:39:00.006+13:00</published><updated>2010-03-06T21:58:58.404+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='API'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Google Buzz Widget jQuery Plugin</title><content type='html'>hi , come up with new jquery feature with Google buzz , Google Buzz is a new way to discuss any ideas and new things which comes up inbuild in gmail now a days. so you will come to know how it is ?but if u want to develop this using jquery then surly this article will help you, you can design same buzz stream into your website.&lt;br /&gt;&lt;br /&gt;Now google Buzz API provides buzz in Atom Format,but some policy need to be maintain under that. you cant grab all the data from another domain without JSONP. now in this case you can use the Google AJax feed api service and download the rss or the atom which will convert into&lt;br /&gt;json compatible format.&lt;br /&gt;&lt;br /&gt;something look like this way:&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/S5IVJdpSOEI/AAAAAAAAAS4/Nw-3vWfWIXc/s1600-h/AA.png"&gt;&lt;img style="cursor: pointer; width: 262px; height: 157px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/S5IVJdpSOEI/AAAAAAAAAS4/Nw-3vWfWIXc/s200/AA.png" alt="" id="BLOGGER_PHOTO_ID_5445438151765145666" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;a href="http://code.google.com/p/google-buzz-widget/"&gt;Project&lt;/a&gt; | &lt;a href="http://code.google.com/p/google-buzz-widget/wiki/Options"&gt;Options&lt;/a&gt; | &lt;a href="http://google-buzz-widget.googlecode.com/files/jquery.google-buzz-1.0.min.js"&gt;Download plugin&lt;/a&gt; | &lt;a href="http://google-buzz-widget.googlecode.com/svn/v1/demo1.htm" rel="nofollow"&gt;Demo 1&lt;/a&gt; | &lt;a href="http://google-buzz-widget.googlecode.com/svn/v1/demo2.htm" rel="nofollow"&gt;Demo 2&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;How to use :&lt;/span&gt;&lt;br /&gt;&amp;lt;script type="text/javascript"  src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&amp;gt; &amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;script type="text/javascript" src="http://google-buzz-widget.googlecode.com/files/jquery.google-buzz-1.0.min.js"&amp;gt; &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are the two Google Api for Jquery and for Google Buzz you can place this in &amp;lt; head &amp;gt; section&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;These are the Features :&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt; You can Dispaly buzzes in fixed list or as you want&lt;/li&gt;&lt;br /&gt;&lt;li&gt; many css features  like height, width , opacity and all&lt;/li&gt;&lt;br /&gt;&lt;li&gt; customize each link &lt;/li&gt;&lt;br /&gt;&lt;li&gt; you can disaply hole buzz in your page&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;yes one more thing , now the Google buzz is very new in and may be rules may get change later on also, so keep on updating&lt;br /&gt;if you know anything new on this , plz post a comment so it will better to us or reader to know update part&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-612825446993690650?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/612825446993690650/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/03/google-buzz-widget-jquery-plugin.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/612825446993690650'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/612825446993690650'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/03/google-buzz-widget-jquery-plugin.html' title='Google Buzz Widget jQuery Plugin'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ivbMBZX_-HU/S5IVJdpSOEI/AAAAAAAAAS4/Nw-3vWfWIXc/s72-c/AA.png' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-20138213031013880</id><published>2010-02-28T23:26:00.010+13:00</published><updated>2010-03-01T00:08:01.671+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ajax'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Jquery &amp; css base mega Menus</title><content type='html'>hi you have seen many drop down verticle as well as horizantal menus . if you have small amount of menus data then you can go with the small menus desing , but if u have many number of requirement in menus then here is cool collection i have on mega menus. hope you like it , if u know more plz add it ..........&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1.Mega Drop Down Menus  with the CSS &amp;amp; jQuery&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img style="cursor: pointer; width: 200px; height: 70px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/S4pN_AMJdvI/AAAAAAAAASo/tt20kK5xxyw/s200/demo.jpg" alt="" id="BLOGGER_PHOTO_ID_5443248844408714994" border="0" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a class="view" href="http://www.sohtanaka.com/web-design/examples/mega-dropdowns/" target="_blank" rel="nofollow"&gt;View Demo&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;2.Inspiration Elsewhere&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;img style="cursor: pointer; width: 320px; height: 173px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/S4pNyfH7PfI/AAAAAAAAASg/x-jByic6Rqw/s320/puma.jpg" alt="" id="BLOGGER_PHOTO_ID_5443248629374205426" border="0" /&gt;&lt;br /&gt;&lt;a href="http://www.shop.puma.com/on/demandware.store/Sites-Puma-US-Site/en/Home-Show?source=marketing" target="_blank" rel="nofollow"&gt;Demo &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3.Virgin&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: right;"&gt;&lt;img style="cursor: pointer; width: 320px; height: 173px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/S4pNmYUcmsI/AAAAAAAAASY/axxxzofRfaY/s320/virgin.jpg" alt="" id="BLOGGER_PHOTO_ID_5443248421389245122" border="0" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: right;"&gt;&lt;a href="http://www.virgin.com/" target="_blank" rel="nofollow"&gt;view Demo&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4. Gateway.com&lt;/span&gt;&lt;br /&gt;&lt;img style="cursor: pointer; width: 200px; height: 108px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/S4pOJrDnjeI/AAAAAAAAASw/hGKWGgrm8i4/s200/gateway.jpg" alt="" id="BLOGGER_PHOTO_ID_5443249027714354658" border="0" /&gt;&lt;br /&gt;&lt;a href="http://www.gateway.com/" target="_blank"&gt; View Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5.Billabong.com,&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;img style="cursor: pointer; width: 320px; height: 173px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/S4pNZn1eFBI/AAAAAAAAASQ/Wh-gRBzVlRs/s320/billabong.jpg" alt="" id="BLOGGER_PHOTO_ID_5443248202215986194" border="0" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://www.billabong.com/us/" target="_blank" rel="nofollow"&gt;View Demo &lt;/a&gt;&lt;br /&gt;&lt;/div&gt;hope you like it , if you know more add it on comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-20138213031013880?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/20138213031013880/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/02/jquery-css-base-mega-menus.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/20138213031013880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/20138213031013880'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/02/jquery-css-base-mega-menus.html' title='Jquery &amp; css base mega Menus'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ivbMBZX_-HU/S4pN_AMJdvI/AAAAAAAAASo/tt20kK5xxyw/s72-c/demo.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6969057920570533573</id><published>2010-02-14T18:03:00.008+13:00</published><updated>2010-02-14T18:32:16.770+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Jquery Slider</title><content type='html'>Jquery has lot of plugins on various topics , yeach i was using some of them in my application and i really like them , its really cool ,  hope it may be useful to u also here i found some nice slider controls in  jquery , there are many ways you can use that just like a slider with content , simple slider , slider with vertical , slider with horizontal with image , slider with simple text , with text + images so many combination u can find&lt;br /&gt;&lt;br /&gt;here are the cool examples u can use that on slider ................&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;1.  jQuery Cycle&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/S3eIvruL5DI/AAAAAAAAARg/HMZF7NOQXVU/s1600-h/jquery-cycle.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 80px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/S3eIvruL5DI/AAAAAAAAARg/HMZF7NOQXVU/s320/jquery-cycle.jpg" alt="" id="BLOGGER_PHOTO_ID_5437965427844834354" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;b&gt;&lt;a href="http://malsup.com/jquery/cycle/" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: verdana; font-weight: bold;"&gt;2. content + images Slider &lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/S3eJRsyO0YI/AAAAAAAAARo/WHy4kk_b2jc/s1600-h/s3slider.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 80px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/S3eJRsyO0YI/AAAAAAAAARo/WHy4kk_b2jc/s320/s3slider.jpg" alt="" id="BLOGGER_PHOTO_ID_5437966012245791106" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;a href="http://www.serie3.info/s3slider/" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;3. Easy slider &lt;/span&gt;&lt;br /&gt;     &lt;b&gt;&lt;a href="http://cssglobe.com/lab/easyslider1.5/02.html" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;4.CrossSlide&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/S3eJw9SyfyI/AAAAAAAAARw/GfB6rbuZCGw/s1600-h/crossslide.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 80px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/S3eJw9SyfyI/AAAAAAAAARw/GfB6rbuZCGw/s320/crossslide.jpg" alt="" id="BLOGGER_PHOTO_ID_5437966549253259042" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: center;"&gt;&lt;b&gt;&lt;a href="http://www.gruppo4.com/%7Etobia/cross-slide.shtml" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;/b&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;5.Pikachoose&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/S3eKQbimzVI/AAAAAAAAAR4/iZ-d7IEMKAY/s1600-h/pikachoose.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 80px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/S3eKQbimzVI/AAAAAAAAAR4/iZ-d7IEMKAY/s320/pikachoose.jpg" alt="" id="BLOGGER_PHOTO_Ijavascript:void(0)D_5437967089948609874" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://pikachoose.com/demo/" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;yeach this one is cool , you can show maximum number of images with cool effects&lt;br /&gt;hope u like this collection.......if u know some more plz add it on comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6969057920570533573?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6969057920570533573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/02/jquery-slider.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6969057920570533573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6969057920570533573'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2010/02/jquery-slider.html' title='Jquery Slider'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/S3eIvruL5DI/AAAAAAAAARg/HMZF7NOQXVU/s72-c/jquery-cycle.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1189329833024022017</id><published>2009-12-22T23:31:00.006+13:00</published><updated>2009-12-26T01:40:35.108+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Deployment'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>ways to Speed Up your Page Response Times.</title><content type='html'>Its ok with if we develop any web application, but it you speed up your application in right manner then you will be a charm of web. users requirement is they want to see your application page as quickly as , but if your application is time consuming from all the aspect then surely no one will stay on with your site. here i got some nice and simple techniques which will &lt;b&gt;improve your page speed &lt;/b&gt;from all the aspect. now &lt;b&gt;google &lt;/b&gt; also setting this as a basic criteria.&lt;br /&gt;&lt;br /&gt;Now you all knows mozilla has some good addon call "&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow" target="_blank"&gt;&lt;b&gt;Firebug&lt;/b&gt;&lt;/a&gt;" you can install that plus you can also install ""&lt;a href="http://code.google.com/speed/page-speed/download.html" rel="nofollow" target="_blank"&gt;&lt;b&gt;Google page Speed &lt;/b&gt;&lt;/a&gt;" which will tell hows your application is behave . there is one more useful addon by yahoo is "&lt;a href="http://developer.yahoo.com/yslow/" rel="nofollow" target="_blank"&gt;&lt;b&gt;YSlow&lt;/b&gt;&lt;/a&gt;" .&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SzChRJE6XfI/AAAAAAAAAQw/JTcoFUVFWuw/s1600-h/1.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 58px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SzChRJE6XfI/AAAAAAAAAQw/JTcoFUVFWuw/s320/1.jpg" alt="" id="BLOGGER_PHOTO_ID_5418007667593076210" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;from this addons you will get lot of information , also try this&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;1. Load your CSS first and your JavaScript last&lt;/span&gt;&lt;br /&gt;Load your css in &amp;lt;head &amp;gt; tag above your body . and try to load your javascript above the closing the body tag.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;2. Using Sub domains for parallel downloads&lt;/span&gt;&lt;br /&gt;This is like cool one , on your site that are lot many static and dynamic images , you can identify that what are the static and what are the dynamic and according to that you can set your sub domain which will useful for parallel download ,so the time requires to download a single image will be get converted into parallel server and parallel image get download from your one of the server .The ideal case is you can set max of 3 server for same,&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;3. Minify JS and CSS:&lt;/span&gt;&lt;br /&gt; Again size get matter , means one your page if you keep unwanted space on js &amp;amp; css surly  size get increase, in this case you can reduce that and make them as lighter as possible, if you use above tools they will give you option how to inimize this or minimize version of same.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;4. Avoid redirects: &lt;/span&gt;&lt;br /&gt; No matter if you do a server-side header redirect, JS,HTML redirect, your site is going to load a header with a blank page, then load your new page, increasing the time it takes for a user to get to the actual page they want to go to&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;5. Using CSS Sprites to reduce HTTP Requests&lt;/span&gt;&lt;br /&gt;CSS Sprites may be the coolest thing, it get reduce your page loads and also reduce the amount of request for each particular images. now look at below you can see one image (static one) contain 15 + images now using CSS you can cut that according to your requirement (using Padding and all )&lt;br /&gt;and use that as you want.&lt;br /&gt;Best example you can see is "&lt;b&gt; YouTube CSS Sprite &lt;/b&gt;".&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/SzChRWMyMgI/AAAAAAAAAQ4/v4KNhI4uczs/s1600-h/2.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 134px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/SzChRWMyMgI/AAAAAAAAAQ4/v4KNhI4uczs/s320/2.jpg" alt="" id="BLOGGER_PHOTO_ID_5418007671115756034" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;define that like this way:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt; style &amp;gt;&lt;br /&gt;.sprite {&lt;br /&gt;background:url(http://s.ytimg.com/yt/img/master-vfl87445.png);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;#logo {&lt;br /&gt;width:100px;&lt;br /&gt;height:45px;&lt;br /&gt;background-position:0 0;&lt;br /&gt;}&lt;br /&gt;&amp;lt;/style &amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;div id="logo" class="sprite"&amp;gt; &amp;lt;/div&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;That was a lot of stuff, but hopefully you picked up a few tips on how to make your web pages load faster. if you know more on this&lt;br /&gt;add it on comments .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-1189329833024022017?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1189329833024022017/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/ways-to-speed-up-your-page-response.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1189329833024022017'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1189329833024022017'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/ways-to-speed-up-your-page-response.html' title='ways to Speed Up your Page Response Times.'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ivbMBZX_-HU/SzChRJE6XfI/AAAAAAAAAQw/JTcoFUVFWuw/s72-c/1.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-3063897600975340425</id><published>2009-12-17T20:06:00.006+13:00</published><updated>2010-02-14T18:34:51.067+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><title type='text'>Traversing an Html table with Javascript</title><content type='html'>This article will introduce you on how to get html table content using DOM Inteface, ones we create an Table on html and suppose we need to retive that table content on server side, on any purpose then this will helps you.you can refer this its really nice way to parse the html table and get the content on same .&lt;br /&gt;&lt;br /&gt;mozilla developer has given a good link on &lt;a href="https://developer.mozilla.org/en/traversing_an_html_table_with_javascript_and_dom_interfaces" target="_blank" rel="nofollow"&gt; ,how to create a DOm interface for table structure &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;sample example:&lt;br /&gt;1. lets create a Table&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;table&amp;gt;&lt;br /&gt;&amp;lt;tbody&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt; &amp;lt;td&amp;gt; This is first td &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt; &amp;lt;td&amp;gt; This is second td &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt; &amp;lt;td&amp;gt; This is third td &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/tbody&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;2. now create a Dom inteface to read this table content , for that you can use Javascript to read this&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;script &amp;gt;&lt;br /&gt;   function start() {&lt;br /&gt;       // get the reference for the body&lt;br /&gt;       var body = document.getElementsByTagName("body")[0];&lt;br /&gt;&lt;br /&gt;       // creates a &amp;lt;table&amp;gt; element and a &amp;lt;tbody&amp;gt; element&lt;br /&gt;       var tbl     = document.createElement("table");&lt;br /&gt;       var tblBody = document.createElement("tbody");&lt;br /&gt;&lt;br /&gt;       // creating all cells&lt;br /&gt;       for (var j = 0; j &amp;lt; 2; j++) {&lt;br /&gt;           // creates a table row&lt;br /&gt;           var row = document.createElement("tr");&lt;br /&gt;&lt;br /&gt;           for (var i = 0; i &amp;lt; 2; i++) {&lt;br /&gt;               // Create a &amp;lt;td&amp;gt; element and a text node, make the text&lt;br /&gt;               // node the contents of the &amp;lt;td&amp;gt;, and put the &amp;lt;td&amp;gt; at&lt;br /&gt;               // the end of the table row&lt;br /&gt;               var cell = document.createElement("td");&lt;br /&gt;               var cellText = document.createTextNode("cell is row "+j+", column "+i);&lt;br /&gt;               cell.appendChild(cellText);&lt;br /&gt;               row.appendChild(cell);&lt;br /&gt;           }&lt;br /&gt;&lt;br /&gt;           // add the row to the end of the table body&lt;br /&gt;           tblBody.appendChild(row);&lt;br /&gt;       }&lt;br /&gt;&lt;br /&gt;       // put the &amp;lt;tbody&amp;gt; in the &amp;lt;table&amp;gt;&lt;br /&gt;       tbl.appendChild(tblBody);&lt;br /&gt;       // appends &amp;lt;table&amp;gt; into &amp;lt;body&amp;gt;&lt;br /&gt;       body.appendChild(tbl);&lt;br /&gt;       // sets the border attribute of tbl to 2;&lt;br /&gt;       tbl.setAttribute("border", "2");&lt;br /&gt;   }&lt;br /&gt;&amp;lt;/script &amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;3. This javascript will first read the table tag element and search with tbody and tr then next td and retrive the content on same .&lt;br /&gt;&lt;br /&gt;4. Remember this technique. You will use it frequently in programming for the W3C DOM. First, you create elements from the top down; then you attach the children to the parents from the bottom up.&lt;br /&gt;&lt;br /&gt;5. Its create just like this way .&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/SynYkRHK1LI/AAAAAAAAAQY/ONTlXlfWuH4/s1600-h/sample1-tabledom.jpg"&gt;&lt;img style="cursor: pointer; width: 318px; height: 197px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/SynYkRHK1LI/AAAAAAAAAQY/ONTlXlfWuH4/s320/sample1-tabledom.jpg" alt="" id="BLOGGER_PHOTO_ID_5416098144470095026" border="0" /&gt;&lt;/a&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/6848214385407010493-3063897600975340425?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/3063897600975340425/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/traversing-html-table-with-javascript.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/3063897600975340425'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/3063897600975340425'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/traversing-html-table-with-javascript.html' title='Traversing an Html table with Javascript'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/SynYkRHK1LI/AAAAAAAAAQY/ONTlXlfWuH4/s72-c/sample1-tabledom.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2061099397045218858</id><published>2009-12-10T01:25:00.003+13:00</published><updated>2009-12-10T01:32:56.956+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Facebook and MySpace deals with Google for real-time search</title><content type='html'>&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sx-Y6RLM_SI/AAAAAAAAAPw/IxbAJKJgBYk/s1600-h/google-office.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 218px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sx-Y6RLM_SI/AAAAAAAAAPw/IxbAJKJgBYk/s320/google-office.jpg" alt="" id="BLOGGER_PHOTO_ID_5413213403932851490" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Yes, &lt;span style="color: rgb(255, 0, 0);"&gt;Myspace &lt;/span&gt;and &lt;span style="color: rgb(255, 0, 0);"&gt;FaceBook &lt;/span&gt;have signed with &lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Google&lt;/span&gt; for the Real-Time search giant.&lt;br /&gt;Facebook and MySpace both are very popular Networking as well as Social bookmarking site, with contain huge amount of Data as well as Traffic too.&lt;br /&gt;&lt;br /&gt;so with the Help of that data Google may give you better result and better Search , Till now we know google deal with &lt;b&gt;Twitter&lt;/b&gt; but now they also deal with &lt;b&gt;FaceBook &lt;/b&gt; and &lt;b&gt; MySpace &lt;/b&gt; . Which means if someone get Search on any Topics then they also get the &lt;i&gt;Real - Time Updates &lt;/i&gt; for this social media sites ,&lt;br /&gt;&lt;br /&gt;This has led to Both Google as well as Bings .in Order to make there search result very faster adn exact. On recent interview with &lt;i&gt; Tom Stocky &lt;/i&gt; Google Director of Product Management. he is saying "People are crazy about the Search and they want up-to-date search result what they looking for " they also said people are also looking for Search result as well as the result come is must be fresh , so surely this Process will help to&lt;span style="font-weight: bold;"&gt; make google better&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;Google would not reveal the financial terms of its agreements – however Facebook’s chief operating officer, Sheryl Sandberg publicly stated at Web 2.0 in San Francisco, that it would be making no money from making public status updates available to search engines. However, MySpace and Facebook have not revealed similar details.&lt;br /&gt;&lt;br /&gt;But In Order with Bings they still has to Integrate the search with Twitter into &lt;span style="font-weight: bold;"&gt;search Process&lt;/span&gt;, they also come up with new separate site with "tweets". lets hope it will come soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2061099397045218858?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2061099397045218858/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/facebook-and-myspace-deals-with-google.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2061099397045218858'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2061099397045218858'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/facebook-and-myspace-deals-with-google.html' title='Facebook and MySpace deals with Google for real-time search'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/Sx-Y6RLM_SI/AAAAAAAAAPw/IxbAJKJgBYk/s72-c/google-office.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2698433099443754716</id><published>2009-12-03T18:20:00.002+13:00</published><updated>2009-12-03T18:23:29.218+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Google Audio indexing</title><content type='html'>Google get introduce new technology call &lt;b&gt;Google Audio Indexing (Gaudi) &lt;/b&gt;. which allow the user to better search from video point of view. It basically using Speech technology to find out the Exact word inside that video and jump the user according to that world where these words get spoken.&lt;br /&gt;&lt;br /&gt;Basically you all know words,sentence, text can get search easily, but this is really nice way to search the text from video itself. which will give your result more additionally.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family: times new roman; font-weight: bold; color: rgb(204, 0, 0);"&gt;How you can use this :&lt;/span&gt;&lt;br /&gt;Look at the below pics you can get ,&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SxdK4fuFnmI/AAAAAAAAAPg/v_KoXOjK4Uw/s1600-h/diagram.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 290px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SxdK4fuFnmI/AAAAAAAAAPg/v_KoXOjK4Uw/s320/diagram.png" alt="" id="BLOGGER_PHOTO_ID_5410875811756875362" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;if i want to search related with &lt;i&gt;gas prices &lt;/i&gt; it will show you result on where exactly this word get spoken on various videos. on left hand side you can see there are Channel filters you can even though filter your search by clicking on that tab . and right hand side you can see there is one video call Gang of 10 and on that video , after particular period some yellow dots are there they are mentioning where exactly that word get spoken, you can directly move your cursor at that position and listen that word. and at bottom its shows various pages result.&lt;br /&gt;&lt;br /&gt;You can also Share this videos with your friends just clicking share button on that video . or simply copy-paste that URL also.&lt;br /&gt;&lt;br /&gt;one more thing you can only search the videos from Youtube source only.&lt;br /&gt;if you want to know how its works look at this : &lt;a href="http://labs.google.com/gaudi" target="_blank"&gt;http://labs.google.com/gaudi &lt;/a&gt;&lt;br /&gt;Currently this technology its in Google Lab , it will publish soon.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2698433099443754716?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2698433099443754716/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/google-audio-indexing.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2698433099443754716'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2698433099443754716'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/12/google-audio-indexing.html' title='Google Audio indexing'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ivbMBZX_-HU/SxdK4fuFnmI/AAAAAAAAAPg/v_KoXOjK4Uw/s72-c/diagram.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5124652743497767217</id><published>2009-11-28T00:27:00.005+13:00</published><updated>2009-11-28T00:38:25.140+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Addon'/><category scheme='http://www.blogger.com/atom/ns#' term='Mozilla'/><category scheme='http://www.blogger.com/atom/ns#' term='Browser'/><title type='text'>MozillaLabs Launches new projects on MozillaLab</title><content type='html'>mozilla now launches new terms just like "Googlelabs" its a &lt;span style="font-weight: bold;"&gt;"mozillalabs".&lt;/span&gt; its a just like a virtual lab where people can come on this share there ideas , there feedback and all to make mozilla very string form all the aspects. here you can make new Experiments and also play with the new technologies and new concepts.&lt;br /&gt;&lt;br /&gt;as you all know mozilla allready have thousands of addons and so many sub products to make web browser better . and also make web better from end of user also. if you want to check all the such cool addon ans all &lt;a href="https://addons.mozilla.org/en-US/firefox/" target="_blank"&gt;refer this &lt;/a&gt; .&lt;br /&gt;it also have lots of thems , plugins, tabs , web application &amp;amp; developments tools, language supporter terms , videos and many more.&lt;br /&gt;&lt;br /&gt;now we come back to the actual point &lt;b&gt;mozillalabs&lt;/b&gt;. now in mozilla labs there are some nice projects are there&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;1.TestSwarm:&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;  &lt;/span&gt;- its a new mozilla lab project that gives the developer an easy and quick test to there javascript code ,  firebug addon is also there but we need to add that manually , mozilla make browser its self javascript compatible , if you want to contribute with the project as a tester simple check the TestSwarm.com. currentl the site is in alpha mode and addon on mozilla labs , This Project now support 7 operating system , window 2000 to OS x 10.5&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sw-5t5yyenI/AAAAAAAAAPY/U2HtXQiZQyQ/s1600/testswarm_large_clients.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 234px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sw-5t5yyenI/AAAAAAAAAPY/U2HtXQiZQyQ/s320/testswarm_large_clients.png" alt="" id="BLOGGER_PHOTO_ID_5408745875754351218" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;if you want to use TestSwarm on your server download this from &lt;a href="http://www.blogger.com/%3Ca%20%20%20href=" com="" jeresig="" testswarm="" tree="" master="" rel="nofollow"&gt; here &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;2. Mozilla weave :&lt;/span&gt; it get explore the blending of the desktop and the Web through deeper integration of the browser with online services.&lt;br /&gt;it has some nice features just like&lt;br /&gt;- AES Encryption , used to  encrypt the date.&lt;br /&gt;- PKI - public key infrastructure.&lt;br /&gt;- JSON&lt;br /&gt;- Debugging tools&lt;br /&gt;&lt;br /&gt;if you want to use this you can get it from here : Install Weave v0.1.28&lt;br /&gt;- https://labs.mozilla.com/forum/index.php/topic,657.0.html&lt;br /&gt;but as i said its all are in labs so try it on your risk.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;3. Test Pilot :&lt;/span&gt;&lt;br /&gt;Test Pilot platform is opening with first Test Pilot add-on for Firefox 3.5.  They are looking for Firefox users of all levels of skill and technical knowledge to help improve Firefox and Labs experiments.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;4. Bespine&lt;/span&gt;&lt;br /&gt;it Embedded on 0.5 in first release to come from Reboted codebase,why its better coz ones you are using this then there is no longer need or required o add any javascript to your page&lt;br /&gt;except the Bespine itself. look at the below&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;br /&gt; &amp;lt;link href="BespinEmbedded.css" type="text/css" rel="stylesheet"&amp;gt;&lt;br /&gt; &amp;lt;script type="text/javascript" src="BespinEmbedded.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt; &amp;lt;style&amp;gt;&lt;br /&gt;  .bespin { margin: 0; padding: 0; border: 0;&lt;br /&gt;    height: 300px; border: 10px solid #ddd;&lt;br /&gt;    -moz-border-radius: 10px;&lt;br /&gt;    -webkit-border-radius: 10px; }&lt;br /&gt; &amp;lt;/style&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt; &amp;lt;h1&amp;gt;Sample Editor as a Component&amp;lt;/h1&amp;gt;&lt;br /&gt; &amp;lt;div id="editor" class="bespin"&lt;br /&gt;   data-bespin-options='{ "stealFocus": true }'&amp;gt;&lt;br /&gt;// The text of this div shows up in the editor.&lt;br /&gt;var thisCode = "what shows up in the editor";&lt;br /&gt;function editMe() {&lt;br /&gt;alert("and have fun!");&lt;br /&gt;}&lt;br /&gt; &amp;lt;/div&amp;gt;&lt;br /&gt; &amp;lt;script&amp;gt;&lt;br /&gt;   window.onBespinLoad = function() {&lt;br /&gt;    console.log("this is called when Bespin is loaded");&lt;br /&gt;   };&lt;br /&gt; &amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;with this you can go secure your application.&lt;br /&gt;the page will give you the View something like this :&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sw-5G9misDI/AAAAAAAAAPQ/p5s_frpOIwo/s1600/BespinEmbeddedSample.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 262px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sw-5G9misDI/AAAAAAAAAPQ/p5s_frpOIwo/s320/BespinEmbeddedSample.png" alt="" id="BLOGGER_PHOTO_ID_5408745206761828402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;there are few more are there on mozilla labs you can have a look on it : &lt;b&gt; &lt;a href="https://mozillalabs.com/" target="_blank"&gt; https://mozillalabs.com/ &lt;/a&gt; &lt;/b&gt;&lt;/li&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;li&gt;&lt;b&gt; Current Projects : &lt;a href="https://mozillalabs.com/projects/" target="_blank"&gt; https://mozillalabs.com/projects/ &lt;/a&gt;&lt;br /&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;if you like this article please add some comments ,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5124652743497767217?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5124652743497767217/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/mozillalabs-launches-new-projects-on.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5124652743497767217'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5124652743497767217'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/mozillalabs-launches-new-projects-on.html' title='MozillaLabs Launches new projects on MozillaLab'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/Sw-5t5yyenI/AAAAAAAAAPY/U2HtXQiZQyQ/s72-c/testswarm_large_clients.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6898783829022106031</id><published>2009-11-26T18:17:00.006+13:00</published><updated>2009-11-26T18:28:34.614+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Single Sign-On for everyone SSO</title><content type='html'>Single Sign-On &lt;span style="font-weight: bold;"&gt;(SSO)&lt;/span&gt; is a very brand topic now a days. most of the application are running under different subdomain as well as different .net framworks also.in which ones the user logs in it will stay logged still user switch to various web site or different domain. SSO will help you in this&lt;br /&gt;case now lets see how how to build it.&lt;br /&gt;&lt;br /&gt;&lt;b&gt; - SSO for different domain. &lt;/b&gt;&lt;br /&gt;suppose we have two different application - http://Foo.com and http://Bar.com. now ones the user get login successfully we need to redirect that user to bar.com site for next process . in this case they cant share cookies and session . so for this case we need to create its own cookies and call it on other side to veridy its a right user.to achieve this we need to create a special page  (sso.aspx) on both the site m and check the cookies exits or not and flow the process.on sso.aspx page you need to do some code like this&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;void Page_Load()&lt;br /&gt;{&lt;br /&gt;  UriBuilder uri = new UriBuilder(Request.UrlReferrer);&lt;br /&gt;  HttpCookie hcok = HttpContext.Current.Request.Cookies[".BarAuth"];&lt;br /&gt;  if (hcok != null &amp;amp;&amp;amp; hcok.HasKeys)  //chk cookies exits&lt;br /&gt;  {&lt;br /&gt;    string cookie = HttpContext.Current.Server.UrlDecode(hcok.Value);&lt;br /&gt;&lt;br /&gt;    FormsAuthenticationTicket fatick = FormsAuthentication.Decrypt(cookie);        &lt;br /&gt;&lt;br /&gt;    uri.Query = uri.Query + "&amp;amp;ssoauth=" + fatick.Name;  //add login name in query.&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;  Response.Redirect(uri.ToString());&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;now if authentication cookies are exits on bar.com, it will decrypt user name and pass name back to the &lt;i&gt;ssoauth&lt;/i&gt;. on http://foo.com site  we need to add some code on http request for processing pipeline, it will be &lt;span style="font-style: italic;"&gt;Application_BeginRequest&lt;/span&gt; event or &lt;span style="font-style: italic;"&gt;HttpHandler&lt;/span&gt; event.&lt;br /&gt;&lt;br /&gt;if - authentication cookie exists on Foo.com, continue processing the request&lt;br /&gt;  - uthentication cookie doesn’t exist, redirect to Bar.com/sso.aspx.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt; - if applications run under different versions of .NET &lt;/b&gt;&lt;br /&gt;its possible that foo and bar application are running on different version of .net .in such case above application will not work beacuase .net 2.0 encryption is different its AES. or in .net1.1 it was 3DES.on .net 2.0 new attribute get added for backwords application&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt; machineKey validationKey="F789KJSER82ERKJ4KJ23KH42KJH444JHG234K4KJB23"&lt;br /&gt;decryptionKey="j234GF23HG2432347ASD7ASDHJA6ASD6HH27374743432" validation="SHA1" decryption="3DES" / &amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;you need to just set &lt;span style="color:red;"&gt;decryption="3DES" &lt;/span&gt; .to run old application.&lt;b&gt;dont add this on web.config of .net 1.1 it will gives Error&lt;/b&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;- mixed-mode authentication (Forms and windows)&lt;/b&gt;&lt;br /&gt;long time back we dealt with only form authentication, but now we can user window authentication also. basically we use form auth for check the user form auth . if the user is reside in Intranet then we can use window auth on NT doamin,&lt;br /&gt;&lt;br /&gt;Requset.ServerVatiables["LOGON_USER"]&lt;br /&gt;&lt;br /&gt;in this we can also set Anonymouse access disable from IIS panel . now LOGON_USER contain NT domain name of the logges on Intranet, but all the other user (internet) get ready for window auth then we can check login via Form auth and if it get fail m move them to Window domain, you can also solve this problem by haveing a special entry page for Intranet users that has Integrate Windows Authentication enabled, validates the domain user, creates a Forms cookie and redirects to the main web site.&lt;br /&gt;&lt;br /&gt;one more easy way is , if ananymous access is enable for web site, IIS get pass request through asp.net runtime process . if result is Error(404 - page not found) then IIS will attempt other method for that site. you just enable both the access for same look at below code&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;if(System.Web.HttpContext.Current.Request.ServerVariables["LOGON_USER"] == "")&lt;br /&gt;{&lt;br /&gt;  System.Web.HttpContext.Current.Response.StatusCode = 401;&lt;br /&gt;  System.Web.HttpContext.Current.Response.End();&lt;br /&gt;}&lt;br /&gt;else&lt;br /&gt;{&lt;br /&gt; // move to valid domain&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;in the above code , it will first check if the domain user get empty string .It will terminate the request and return the 401 IIS error , in this case if your is already logg in domian , the request will repeated .and if not then he will go through the window auth for upto 3 times , and still he can't pass that 3 attempt the he/she will ge the Error as 4.0 (which is Access Denied )&lt;br /&gt;&lt;br /&gt;There are few more ways for SSO in .net application . its also possible to implement this process in Different platform aslo , actual idea will become same but may be implementation get change according to platform.&lt;br /&gt;&lt;br /&gt;Thank you , if you like this plz add some comments.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6898783829022106031?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6898783829022106031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/single-sign-on-for-everyonesso.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6898783829022106031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6898783829022106031'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/single-sign-on-for-everyonesso.html' title='Single Sign-On for everyone SSO'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-9214240750980619232</id><published>2009-11-19T18:55:00.003+13:00</published><updated>2009-11-19T18:57:20.158+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Explore images with Google Image Swirl.</title><content type='html'>now google launched Image Search call &lt;b&gt;" Google Image Swirl "&lt;/b&gt;.if you want to search for &lt;b&gt;  car &lt;/b&gt; you will get the all the images related with cars in http://images.google.com/ but make your search Perfect with all the aspects google now use image swirl, now this is in Google lab.&lt;br /&gt;&lt;br /&gt;when you search &lt;a href="http://image-swirl.googlelabs.com/html?query=car"&gt;car &lt;/a&gt; section on image swirl you will get the array of images of various cars with different different models &amp;amp; different different variations. you click any one of that it will open all the cars related with same. now this is done on new computer vision research to cluster all the similar images on to this group to make your search better.&lt;br /&gt;&lt;br /&gt;For Example : now you search with cars you will get the set of 12 images thumbnail of cars , like this&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/SwTd2JgcVaI/AAAAAAAAAPA/NLUuv4AinNQ/s1600/1.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 226px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/SwTd2JgcVaI/AAAAAAAAAPA/NLUuv4AinNQ/s320/1.jpg" alt="" id="BLOGGER_PHOTO_ID_5405689375086106018" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;now ones you find any perticual car is you'r looking for click on that it will show you all the cluster images of that cars in one single circle. like this you can enhanse your search.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/SwTd2WHGT5I/AAAAAAAAAPI/t6oL6ELVY3E/s1600/2.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 198px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/SwTd2WHGT5I/AAAAAAAAAPI/t6oL6ELVY3E/s320/2.jpg" alt="" id="BLOGGER_PHOTO_ID_5405689378469466002" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;you can also explore your additional sub-groups with any cluster and make search better.now this technology is develop for &lt;i&gt;&lt;b&gt;Picasa &lt;/b&gt;&lt;/i&gt; and &lt;i&gt;&lt;b&gt;Similar images&lt;/b&gt;&lt;/i&gt;.&lt;br /&gt;&lt;br /&gt;Image Swirl is working for more than 200,000 Queries and now plan to include more in feature.they are using using auto-complete option when you start with search box just like Google Suggest.so lets try with Google Image Swirl today to make your search better,&lt;br /&gt;&lt;br /&gt;happy googleing...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-9214240750980619232?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/9214240750980619232/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/explore-images-with-google-image-swirl.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9214240750980619232'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9214240750980619232'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/explore-images-with-google-image-swirl.html' title='Explore images with Google Image Swirl.'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/SwTd2JgcVaI/AAAAAAAAAPA/NLUuv4AinNQ/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5137494330661000438</id><published>2009-11-09T23:24:00.007+13:00</published><updated>2009-11-10T00:25:04.617+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tools'/><category scheme='http://www.blogger.com/atom/ns#' term='API'/><category scheme='http://www.blogger.com/atom/ns#' term='Flickr'/><title type='text'>Top flickr tools</title><content type='html'>&lt;b&gt;&lt;span style="font-style: italic;"&gt;Flickr&lt;/span&gt; &lt;/b&gt;is one of the Social Photo Sharing site, where you can upload your photo , get the comments on photo, rate the photo , or also share your photo's with your friends. there are so many site just like Flickr but &lt;b&gt; &lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;Flickr&lt;/span&gt;  &lt;/b&gt; has very nice and atractive look and have some great features that can likes you.&lt;br /&gt;&lt;br /&gt;Here are some Flickr tools to enhance you flickr Experience .&lt;br /&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;1 .&lt;/span&gt;&lt;strong style="color: rgb(153, 51, 0);"&gt;&lt;a href="http://www.codeplex.com/flickrexplorer"&gt;Flickr Explorer&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt; you have seen many flickr uploaders but photo downloader is less than that . So you can use this tool to download the photo from flickr.com&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Svf6Na8x4BI/AAAAAAAAAN4/WrU-Hi9QpRI/s1600-h/1.jpg"&gt;&lt;img style="cursor: pointer; width: 257px; height: 320px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Svf6Na8x4BI/AAAAAAAAAN4/WrU-Hi9QpRI/s320/1.jpg" alt="" id="BLOGGER_PHOTO_ID_5402061386533691410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2.&lt;strong&gt;&lt;a href="http://www.flickrfight.net/"&gt;FlickrFight&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt; This will helps you to compare two images , you need to only enter that keyword or tag and just check that images on flickr site.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf6NqGn2OI/AAAAAAAAAOA/Eie1fAFEves/s1600-h/2.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 154px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf6NqGn2OI/AAAAAAAAAOA/Eie1fAFEves/s320/2.png" alt="" id="BLOGGER_PHOTO_ID_5402061390601509090" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;3.&lt;strong&gt;&lt;a href="http://flickrslidr.com/"&gt;flickrSLiDR&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;SLiDR will allow you to easily embed with the classical slideshoe on your application , you just need to enter the url , photo or group that you want to embeded with some option , then you will get the help code of same,&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Svf6N4c3qyI/AAAAAAAAAOI/76Zwl3L9RqE/s1600-h/3.png"&gt;&lt;img style="cursor: pointer; width: 306px; height: 320px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Svf6N4c3qyI/AAAAAAAAAOI/76Zwl3L9RqE/s320/3.png" alt="" id="BLOGGER_PHOTO_ID_5402061394452917026" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4.&lt;a href="http://uploadrxl.rutgersmit.com/"&gt;UploadrXL&lt;/a&gt;&lt;br /&gt;From here you can upload more images on your site , it has some nice features ike Multi lingual , thumbnail preview , Adding multiple photos , Groups photos , EXIT reader , Tag Editor and so on , one better thing is it supports .Net Framework 2.0&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf6OexEXeI/AAAAAAAAAOQ/uj9fyzEz4Ps/s1600-h/4.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 219px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf6OexEXeI/AAAAAAAAAOQ/uj9fyzEz4Ps/s320/4.png" alt="" id="BLOGGER_PHOTO_ID_5402061404738182626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;5.&lt;strong&gt;&lt;a href="http://www.compfight.com/"&gt;CompFight&lt;/a&gt;&lt;/strong&gt; -&lt;br /&gt;&lt;br /&gt;Compfight its a new tool basically uses in Flickr’s API , To search the database of photos and then feeds back the results as live clickable thumbnails.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/Svf6OmtOH5I/AAAAAAAAAOY/pprpO6mO-mA/s1600-h/5.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 276px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/Svf6OmtOH5I/AAAAAAAAAOY/pprpO6mO-mA/s320/5.png" alt="" id="BLOGGER_PHOTO_ID_5402061406869528466" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;6.&lt;strong&gt;&lt;a href="http://www.pimpampum.net/bubblr/"&gt;Bubbler&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;this tool is used to create comic strips using flickr, you just search for photos using tags or you can also search using username and get the right pic , now just drag the bubble on that pic or photos and enter the text what ever you want that text will get publish .&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Svf7kcNGsKI/AAAAAAAAAOg/pUOVZB17Qqg/s1600-h/6.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 232px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Svf7kcNGsKI/AAAAAAAAAOg/pUOVZB17Qqg/s320/6.png" alt="" id="BLOGGER_PHOTO_ID_5402062881519218850" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;7.&lt;strong&gt;&lt;a href="http://flickr.nosv.org/"&gt;Flickr Logo Makr&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;You can desing you own logo using this cool tool.  you can find same color font or style using on flickr.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf7kpILTAI/AAAAAAAAAOo/7DhIkEEJxC8/s1600-h/7.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 254px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf7kpILTAI/AAAAAAAAAOo/7DhIkEEJxC8/s320/7.png" alt="" id="BLOGGER_PHOTO_ID_5402062884988210178" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;8.&lt;strong&gt;&lt;a href="http://philmccluskey.com/projects/flickrfox/"&gt;FlickrFox&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;it will allow you to browse the phpto in sidebar in FF(Firefox), that can makes managing your groups ,searching new tags ,keep the contacts easy , and many more.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/Svf7kzoJmpI/AAAAAAAAAOw/4Nhhglssbcg/s1600-h/8.png"&gt;&lt;img style="cursor: pointer; width: 320px; height: 185px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/Svf7kzoJmpI/AAAAAAAAAOw/4Nhhglssbcg/s320/8.png" alt="" id="BLOGGER_PHOTO_ID_5402062887806671506" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;9.&lt;strong&gt;&lt;a href="http://www.flishr.com/"&gt;Flishr&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;Flishr is a primer application to Download,search and also for upload from one center to another that means one PC to another .it has some best features that can make you search better and easy to use , you need to search &amp;amp; downlod that pics from flickr or need to upload that pics in very fast maner, but one limitation is there with this you can use this application only on Windows only.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf7lIY5kwI/AAAAAAAAAO4/36c0DIB7DSg/s1600-h/9.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 242px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Svf7lIY5kwI/AAAAAAAAAO4/36c0DIB7DSg/s320/9.jpg" alt="" id="BLOGGER_PHOTO_ID_5402062893379851010" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;10.&lt;strong&gt;&lt;a href="http://www.chasr.org/"&gt;Chasr&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;this is mini application, you can dispaly your pics from Flickr on your own site or blog for free of cost , download this Chasr and install it you own server , which will allow you to see your pics on your own site.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5137494330661000438?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5137494330661000438/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/top-flickr-tools.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5137494330661000438'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5137494330661000438'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/top-flickr-tools.html' title='Top flickr tools'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ivbMBZX_-HU/Svf6Na8x4BI/AAAAAAAAAN4/WrU-Hi9QpRI/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4206263819426121399</id><published>2009-11-02T22:13:00.018+13:00</published><updated>2009-11-02T23:24:15.022+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Addon'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='Browser'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>15+ Firefox addons for Developer and Designers</title><content type='html'>&lt;b&gt;Addon's &lt;/b&gt; playing important role for web developer as well as for web desginer also , you can say its make your task easier. Firefox is one of the free and open source web browser and provides most comman features for web devloper and designer,&lt;br /&gt;There are huge no of lists of &lt;b&gt; addons  or extensions &lt;/b&gt;. here i have mention some of them which are really useful for a developer as well as for designer.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="Firebug Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/1843" rel="nofollow" target="_blank"&gt;Firebug&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;Firebug is very commonly use addon , which can easily catch  javascript , jquery error in live page , you can edit and also debug the live application using this cool addon&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6pxUUrCjI/AAAAAAAAAL4/BhN6k75vpYs/s1600-h/firebug.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6pxUUrCjI/AAAAAAAAAL4/BhN6k75vpYs/s320/firebug.jpg" alt="" id="BLOGGER_PHOTO_ID_5399439667997903410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;a title="WebDeveloper Firefox Addon" href="http://addons.mozilla.org/en-US/firefox/addon/60" rel="nofollow" target="_blank"&gt;Web Developer&lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;This addon very much useful for the again developer to test there live application in terms of html, css, dhtml , images and so on, ones you install this addon you can find that addon on new toolbar&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6qlNR7dtI/AAAAAAAAANA/1yzeavIDuZ0/s1600-h/webdeveloper.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6qlNR7dtI/AAAAAAAAANA/1yzeavIDuZ0/s320/webdeveloper.jpg" alt="" id="BLOGGER_PHOTO_ID_5399440559460546258" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="FirePHP Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/6149" rel="nofollow" target="_blank"&gt;FirePHP&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;its enable you to log to your Firebug console using php method call. its basically suit for the ajax development process.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6pybXuuII/AAAAAAAAAMY/NCimOUjtdKI/s1600-h/firephp.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6pybXuuII/AAAAAAAAAMY/NCimOUjtdKI/s320/firephp.jpg" alt="" id="BLOGGER_PHOTO_ID_5399439687069644930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="ColorZilla Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/271" rel="nofollow" target="_blank"&gt;ColorZilla&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;ColorZilla will get you the color which is reading from mouse pointer , you just need to move your mouse on that location and you will get the color of same , you can also zoom that page you also measure the distance between the any two points . you can also save that selected color as a custom palettes&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6sZ7WO8VI/AAAAAAAAANI/869z0cuGl2o/s1600-h/colorzilla.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6sZ7WO8VI/AAAAAAAAANI/869z0cuGl2o/s320/colorzilla.jpg" alt="" id="BLOGGER_PHOTO_ID_5399442564691456338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="CSSViewer Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/2104" rel="nofollow" target="_blank"&gt;CSSViewer&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;its a very common tool ones you hover on any element, it will display all CSS styles for that element.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6spDcELqI/AAAAAAAAANQ/8jka_tcPO6I/s1600-h/cssviewer.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6spDcELqI/AAAAAAAAANQ/8jka_tcPO6I/s320/cssviewer.jpg" alt="" id="BLOGGER_PHOTO_ID_5399442824561438370" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="Window Resizer Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/1985" rel="nofollow" target="_blank"&gt;Window Resizer&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;Resize your Browser to various size, basically its useful for testing the your application on various sceen , then you come to know you application is feet in current window or not , there are some resoultion : 64x480 , 800×600, 1024×768, 1280×800, 1280×1024, 1600×1200&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6v6QfuIgI/AAAAAAAAANY/01ekB3PMTFw/s1600-h/windowresizer.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Su6v6QfuIgI/AAAAAAAAANY/01ekB3PMTFw/s320/windowresizer.jpg" alt="" id="BLOGGER_PHOTO_ID_5399446418659090946" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt;&lt;a title="Cooliris Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/5579" rel="nofollow" target="_blank"&gt;Cooliris &lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;its a cool addon , you can easily browse the photos and videos from web.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6wbjDK-xI/AAAAAAAAANg/IOumXMJ9eXA/s1600-h/cooliris.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6wbjDK-xI/AAAAAAAAANg/IOumXMJ9eXA/s320/cooliris.jpg" alt="" id="BLOGGER_PHOTO_ID_5399446990575303442" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/249" rel="nofollow" target="_blank"&gt;HTML Validator&lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;displays the number of found errors of the site you are viewing. it will parse the html page and display the error.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt; &lt;a title="URL Fxer Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/2871" rel="nofollow" target="_blank"&gt;URL Fixer &lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;it corrents the typos in URL that enter in the address bar. for example if you type rediff.con instead if com it will automatically fix it and parse it and redirect to you on actaul site, Current version is support the .com,.net,.org.,.edu..gov,.mil and other TLD.&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Su6qkz7XGzI/AAAAAAAAAM4/p3OEHDIgLCs/s1600-h/urlfixer.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Su6qkz7XGzI/AAAAAAAAAM4/p3OEHDIgLCs/s320/urlfixer.jpg" alt="" id="BLOGGER_PHOTO_ID_5399440552655002418" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt;&lt;a title="FEBE Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/2109" rel="nofollow" target="_blank"&gt;FEBE &lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;FEBE (Firefox Environment Backup Extension)  allow you to quickly and easily backup your firefox. it will rebuild your extensions into .xpi files.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6pyIpUcYI/AAAAAAAAAMQ/jIFa7r3Lv_c/s1600-h/febe.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6pyIpUcYI/AAAAAAAAAMQ/jIFa7r3Lv_c/s320/febe.jpg" alt="" id="BLOGGER_PHOTO_ID_5399439682043146626" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;a title="LiveHTTPHeaders Firefox Addon" href="https://addons.mozilla.org/en-US/firefox/addon/3829" rel="nofollow" target="_blank"&gt;LiveHTTPHeaders &lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;its allows you to analyze your http header , it will also help you to debug you web applicaiton ,you can also see what sort of server is using and also view cookies sent by the remote sites,&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6qkL1kQsI/AAAAAAAAAMo/lSXl7eLg7jk/s1600-h/livehttpheaders.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 86px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6qkL1kQsI/AAAAAAAAAMo/lSXl7eLg7jk/s320/livehttpheaders.jpg" alt="" id="BLOGGER_PHOTO_ID_5399440541893280450" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt; &lt;a href="https://addons.mozilla.org/e%20n-US/firefox/addon/138" rel="nofollow" target="_blank"&gt;StumbleUpon&lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;stumbleUpon is a social bookmarking sites , its useful to you to search the sites , this site derive a large no of visitors to your sites.&lt;br /&gt;&lt;div style="text-align: left;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6qkftwH3I/AAAAAAAAAMw/4do5vAF4M20/s1600-h/stumble.png"&gt;&lt;img style="cursor: pointer; width: 200px; height: 150px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6qkftwH3I/AAAAAAAAAMw/4do5vAF4M20/s320/stumble.png" alt="" id="BLOGGER_PHOTO_ID_5399440547229212530" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;h4&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/4415" rel="nofollow" target="_blank"&gt;Font Finder&lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;font finder tools helps you to find the font of highlighted text, you need to just select the text and right click to see all the styling get included on that text you can also view the  Color, font-family and so on&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;&lt;a href="https://addons.mozilla.org/en-US/firefox/addon/2289" rel="nofollow" target="_blank"&gt;CSS Validator&lt;/a&gt;&lt;/h4&gt;&lt;br /&gt;Validate your page using W3c css validator. just right click on page and select &lt;b&gt;Validate CSS &lt;/b&gt; it will validate and parse your page and  open result on new tab and show you error on same.&lt;br /&gt; &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Su6w_eIVqHI/AAAAAAAAANo/uh1xPChK6w0/s1600-h/cssvalid.png"&gt;&lt;img style="cursor: pointer; width: 194px; height: 147px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Su6w_eIVqHI/AAAAAAAAANo/uh1xPChK6w0/s320/cssvalid.png" alt="" id="BLOGGER_PHOTO_ID_5399447607730088050" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;h4&gt; &lt;a href="https://addons.mozilla.org/en-US/firefox/addon/4775" rel="nofollow" target="_blank"&gt;Autofill Forms&lt;/a&gt; &lt;/h4&gt;&lt;br /&gt;auto fill is one of the best option or addon, instaed of typing text again and again you just save that text on AutoFill Form and whenever you required you simply use that so it will get fill that field automatically , for example  on Gmail.com , you need to enter id &amp;amp; password to access your account now instad of typing id &amp;amp; password daily you just save . and ones you open gmail.com page click on AutoFill option . it will automatically get fill your id &amp;amp; password .&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6px52S_8I/AAAAAAAAAMI/f4Az0aomawk/s1600-h/autofill.jpg"&gt;&lt;img style="cursor: pointer; width: 320px; height: 103px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/Su6px52S_8I/AAAAAAAAAMI/f4Az0aomawk/s320/autofill.jpg" alt="" id="BLOGGER_PHOTO_ID_5399439678071046082" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;if u know more add in on a Comments .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-4206263819426121399?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4206263819426121399/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/15-firefox-addons-for-developer-and.html#comment-form' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4206263819426121399'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4206263819426121399'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/11/15-firefox-addons-for-developer-and.html' title='15+ Firefox addons for Developer and Designers'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ivbMBZX_-HU/Su6pxUUrCjI/AAAAAAAAAL4/BhN6k75vpYs/s72-c/firebug.jpg' height='72' width='72'/><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5293265000233591791</id><published>2009-10-30T00:14:00.006+13:00</published><updated>2010-05-24T18:14:48.394+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Digg'/><title type='text'>How to Add digg button to all posts on your blogspot blog</title><content type='html'>How to Add &lt;b&gt;Digg &lt;/b&gt; Button ,&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sul5lLXbvTI/AAAAAAAAALw/DSiIaydR6DA/s1600-h/digg.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 63px; height: 93px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/Sul5lLXbvTI/AAAAAAAAALw/DSiIaydR6DA/s200/digg.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5397979307993447730" /&gt;&lt;/a&gt;&lt;br /&gt; &lt;ul type="SQuare"&gt;&lt;br /&gt; &lt;li&gt;Open your Blogger Dashboard &lt;/li&gt;&lt;br /&gt; &lt;li&gt;Click on  Layout &gt; Edit Html part.&lt;/li&gt;&lt;br /&gt; &lt;li&gt;now Click on  Expand Widget Templates &lt;/li&gt;&lt;br /&gt; &lt;li&gt;Seach for &lt;font color=green&gt;&amp;lt;data:post.body/ &amp;gt;&lt;/font&gt; &lt;/li&gt;&lt;br /&gt; &lt;li&gt;Paste the Below code above the searched text&lt;/li&gt;&lt;br /&gt;   &lt;code&gt;&lt;br /&gt;     &amp;lt;script type="text/javascript" &amp;gt;&lt;br /&gt;     digg_url = 'WEBSITE_URL';&lt;br /&gt;     digg_bgcolor = '#ff9900';&lt;br /&gt;     digg_skin = 'compact';&lt;br /&gt;     digg_window = 'new';&lt;br /&gt;     &amp;lt;/script &amp;gt;&lt;br /&gt;     &amp;lt;script src="http://digg.com/tools/diggthis.js" type="text/javascript" &amp;gt; &amp;lt;/script&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt; &lt;br /&gt; &lt;li&gt;&lt;font color=blue&gt;digg_bgcolor &lt;/font&gt;- change the background color &lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;font color=blue&gt;digg_window &lt;/font&gt;- set is 'New' when you want to open page on new window&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;font color=blue&gt;digg_skin  &lt;/font&gt;- its a optional control by  default it is yellow , you can change it according to you&lt;/li&gt;&lt;br /&gt; &lt;li&gt;&lt;font color=blue&gt;digg_url&lt;/font&gt; - 'WEBSITE_URL'; here just enter URL of the page &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;you can omit all the attribute , but you can't omit &lt;b&gt;digg_url&lt;/b&gt; - its your post url submitting to digg.&lt;li&gt; now you can  click on &lt;b&gt;save your template&lt;/b&gt; , it will take effect soon .&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;happy digging..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5293265000233591791?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5293265000233591791/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/how-to-add-digg-button-to-all-posts-on.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5293265000233591791'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5293265000233591791'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/how-to-add-digg-button-to-all-posts-on.html' title='How to Add digg button to all posts on your blogspot blog'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/Sul5lLXbvTI/AAAAAAAAALw/DSiIaydR6DA/s72-c/digg.JPG' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2824062240140219685</id><published>2009-10-28T18:08:00.002+13:00</published><updated>2009-10-28T18:11:39.092+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='gridView'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Add Image in between Rows of a GridView using C#</title><content type='html'>again i come up with some new tips on Gridview , there are lots many things are there in Gridview . now my this article is describe you how to add the image on Gridivew, you can say after perticular records then you can use " OnRowDataBound " Property or " onRowCreated " like first 5 records then some distinguished between next 5 records like that.&lt;br /&gt;&lt;b&gt;here are the stpes how you can do that.&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1. Create one Application &lt;br /&gt;2. Add the Gridview control on a page ,also add the data source for same ,and just simply link it with some sample table  &lt;br /&gt;3. consider below is your Gridview code&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt; &amp;lt;asp:GridView ID="GridView1" DataSourceID="SqlDataSource1"  AllowPaging="True" &lt;br /&gt;            AutoGenerateColumns="False" DataKeyNames="CustomerID" &lt;br /&gt;            runat="server" OnRowDataBound="GridView1_RowDataBound" AllowSorting="True"&amp;gt;&lt;br /&gt;            &amp;lt;Columns&amp;gt;&lt;br /&gt;                &amp;lt;asp:BoundField DataField="ID" HeaderText="ID" /&amp;gt;&lt;br /&gt;                &amp;lt;asp:BoundField DataField="Name" HeaderText="Name" /&amp;gt;&lt;br /&gt;            &amp;lt;/Columns&amp;gt;&lt;br /&gt;        &amp;lt;/asp:GridView&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;4. now suppose if i want to add new row which is &lt;b&gt;background &lt;/b&gt; , then i have to add Gridview_RowDataBound event , this will enable you to provide the Event-Handling method which will perform the Custom routine option. that can be like modiffy the row, add the new record into the row and so on.now for that we are adding page level varible call &lt;i&gt;pSize&lt;/i&gt; which will hold the Row position where we want to add that image column, with same also add that image to your Gridview&lt;br /&gt;below code will help you .&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;    static int pSize;&lt;br /&gt; &lt;br /&gt;    protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;    {&lt;br /&gt;        if(!Page.IsPostBack)&lt;br /&gt;              pSize = 0;&lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)&lt;br /&gt;    {&lt;br /&gt;        if (e.Row.RowType == DataControlRowType.DataRow)&lt;br /&gt;        {&lt;br /&gt;  &lt;br /&gt;            TableCell TabCell = new TableCell();&lt;br /&gt;            Image img = new Image();&lt;br /&gt;            img.ImageUrl = "Photo.gif";&lt;br /&gt;            TabCell.Controls.Add(img);&lt;br /&gt;           &lt;br /&gt;            GridView gView = (GridView)sender;&lt;br /&gt;            int colSpan = gView.Columns.Count;&lt;br /&gt;            TabCell.Attributes["ColSpan"] = colSpan.ToString();&lt;br /&gt; &lt;br /&gt;            GridViewRow gRow = new GridViewRow(-1, -1, DataControlRowType.DataRow, DataControlRowState.Normal);&lt;br /&gt;           &lt;br /&gt;            gRow.Cells.Add(TabCell);   // add the cells to the gridviewrow&lt;br /&gt; &lt;br /&gt;            Table newtbl = (Table)e.Row.Parent;&lt;br /&gt; &lt;br /&gt;            if(pgSize == 0)&lt;br /&gt;                pgSize = GridView1.PageCount / 2;&lt;br /&gt; &lt;br /&gt;            if (Convert.ToDouble(e.Row.DataItemIndex + 1) / Convert.ToDouble(pgSize) == 1.0)&lt;br /&gt;            {&lt;br /&gt;                newtbl.Controls.AddAt(gView.Controls[0].Controls.Count, gRow);&lt;br /&gt;                // add 10 to the pgsize so that the image can be displayed&lt;br /&gt;                // at rows 5, 15, 25 and so on..&lt;br /&gt;                pgSize = pgSize + 10;&lt;br /&gt;            }&lt;br /&gt; &lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt; here you can see how its look like:&lt;br /&gt; &lt;br /&gt;  &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/SufSYg-7DPI/AAAAAAAAALg/5x5jC8lUDLI/s1600-h/ImageGridView.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 125px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/SufSYg-7DPI/AAAAAAAAALg/5x5jC8lUDLI/s200/ImageGridView.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5397513997039373554" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; hope this example will helps you .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2824062240140219685?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2824062240140219685/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/add-image-in-between-rows-of-gridview.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2824062240140219685'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2824062240140219685'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/add-image-in-between-rows-of-gridview.html' title='Add Image in between Rows of a GridView using C#'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_ivbMBZX_-HU/SufSYg-7DPI/AAAAAAAAALg/5x5jC8lUDLI/s72-c/ImageGridView.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-7810816431227581540</id><published>2009-10-15T19:20:00.002+13:00</published><updated>2009-10-15T19:22:56.925+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Seo'/><category scheme='http://www.blogger.com/atom/ns#' term='IIS'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><title type='text'>IIS SEO Toolkit helps Web developers</title><content type='html'>The IIS Search Engine Optimization (SEO) Toolkit helps Web developers, hosting providers, and server administrators improve their sites' relevance in search results by recommending how to make them more search engine-friendly. The IIS SEO Toolkit Beta can be installed with the Microsoft Web Platform Installer 2.0 Beta for use with IIS 7.0 and IIS 7.5.&lt;br /&gt;&lt;br /&gt;For or &lt;a target="_blank" rel="nofollow" href="http://www.iis.net/extensions/SEOToolkit"&gt;more details on IIS SEO Toolkit&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-7810816431227581540?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/7810816431227581540/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/iis-seo-toolkit-helps-web-developers.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7810816431227581540'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7810816431227581540'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/iis-seo-toolkit-helps-web-developers.html' title='IIS SEO Toolkit helps Web developers'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6605629094402300568</id><published>2009-10-07T19:22:00.003+13:00</published><updated>2009-10-07T21:50:33.525+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='API'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='Youtube'/><title type='text'>youtube search api using  C#</title><content type='html'>hi , i have allready specify how you can use &lt;a href="http://webdevlopementhelp.blogspot.com/2009/07/youtube-api-in-c.html"&gt;youtube api in your .net application, &lt;/a&gt; here is my next post on same topic , you can add Youtube Search widget on your web site using API SEARCH method ,XmlDataSource control can be used in ASP.Net to bind the Youtube API RSS response to display the Youtube videos. &lt;br /&gt;&lt;br /&gt;if you are using .Net then &lt;b&gt;Repeater Control&lt;/b&gt; is one of the best option to display result . at first you need to create api method url to retrive the result from youtube in terms of &lt;b&gt;RSS Feed&lt;/b&gt;. you can also Use of XmlNamespaceManager to read that Rss feed having media namespace that provides the syndication content about Youtube videos&lt;br /&gt;&lt;br /&gt;- &lt;strong&gt;Google Code for Youtube API and Tools&lt;/strong&gt;&lt;br /&gt;&lt;p&gt;&lt;a rel="nofollow" href="http://code.google.com/apis/youtube/developers_guide_protocol.html#Searching_for_Videos" target="_blank"&gt;http://code.google.com/apis/youtube/developers_guide_protocol.html#Searching_for_Videos&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Steps to add simple YouTube search page to your ASP.NET  web site &lt;/b&gt;&lt;br /&gt;&lt;ul&gt; &lt;br /&gt;&lt;li&gt; first get a free Developer Key:&amp;nbsp; &lt;a href="http://youtube.com/signup?next=/my_profile_dev" rel="nofollow"&gt;http://youtube.com/signup?next=/my_profile_dev&lt;/a&gt;.  &lt;/li&gt;&lt;br /&gt; &lt;li&gt;now you need to construct uri like this&lt;br /&gt; &lt;code&gt;&lt;br /&gt;string uri = "http://www.youtube.com/api2_rest?";&lt;br /&gt;            uri += "method=youtube.videos.list_by_tag";&lt;br /&gt;             uri += "&amp;dev_id=" + developerKey;&lt;br /&gt;            uri += "&amp;tag=" + txtSearch.Text;&lt;br /&gt;            uri += "&amp;page=1&amp;per_page=50"; //&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt; &lt;li&gt; now you can get the returned result in an XML document,now load the XML into a DataSet using its ReadXml method.&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;br /&gt; now create one page and in that create one text box and one submit button &lt;br /&gt; put this code on codebehind &lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt; protected void Button1_Click(object sender, EventArgs e)&lt;br /&gt;        {&lt;br /&gt;            string developerKey = "" // put your key here;&lt;br /&gt;            if (developerKey.Length == 0)&lt;br /&gt;            {&lt;br /&gt;                Response.Write("You need to get a &lt;a href=http://youtube.com/signup?next=/my_profile_dev&gt; YouTube &lt;br /&gt;&lt;br /&gt;developer key&lt;/a&gt; first!");&lt;br /&gt;                return;&lt;br /&gt;            }&lt;br /&gt;            // Call the YouTube api to list all videos for a tag&lt;br /&gt;            string uri = "http://www.youtube.com/api2_rest?";&lt;br /&gt;            uri += "method=youtube.videos.list_by_tag";&lt;br /&gt;             uri += "&amp;dev_id=" + developerKey;&lt;br /&gt;            uri += "&amp;tag=" + txtSearch.Text;&lt;br /&gt;            uri += "&amp;page=1&amp;per_page=50"; // you can add custom paging if desired&lt;br /&gt;            DataSet ds = new DataSet();&lt;br /&gt;            ds.ReadXml(uri);&lt;br /&gt;            DataTable dt = ds.Tables[2];&lt;br /&gt;            this.DataList1.DataSource = dt;&lt;br /&gt;            DataList1.DataBind();&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; and here is your datalist code&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&amp;lt;table&amp;gt;&lt;br /&gt; &amp;lt;asp:Datalist id="DataList1" runat="server"  CellPadding="2" CellSpacing ="2" BorderStyle="None"&amp;gt;&lt;br /&gt;&amp;lt;FooterStyle BackColor="#CCCCCC" ForeColor="Black"&amp;gt;&amp;lt;/FooterStyle&amp;gt;&lt;br /&gt;&amp;lt;ItemTemplate&amp;gt;&lt;br /&gt;&amp;lt;tr &amp;gt; &amp;lt;td colspan="2" align=center&amp;gt; &amp;lt;b&amp;gt; &amp;lt;%# DataBinder.Eval(Container, "DataItem.title") %&amp;gt;   &amp;lt;/b&amp;gt;  &amp;lt;/td&amp;gt; &amp;lt;/tr&amp;gt;&lt;br /&gt;  &amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td style="width:100px;Height:20px;"&amp;gt;&lt;br /&gt;    &amp;lt;asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl='&amp;lt;%# Eval("url") %&amp;gt;' &amp;gt;&lt;br /&gt;    &amp;lt;asp:Image ID="Img" ImageUrl='&amp;lt;%#Eval("thumbnail_url") %&amp;gt;' runat="Server" /&amp;gt;&lt;br /&gt;    &amp;lt;/asp:HyperLink&amp;gt;&lt;br /&gt;    &amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="width:450px;Height:20px;"&amp;gt;&amp;lt;%# DataBinder.Eval(Container, "DataItem.description") %&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;        &amp;lt;/tr&amp;gt;        &lt;br /&gt;&amp;lt;/ItemTemplate&amp;gt;&lt;br /&gt;&amp;lt;/asp:Datalist&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt; &lt;a href="http://ittyurl.net/YouTube.aspx" rel="nofollow" target="_blank"&gt;view demo &lt;/a&gt;&lt;br /&gt; that's it , happy youtubing...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6605629094402300568?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6605629094402300568/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/youtube-search-api-using-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6605629094402300568'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6605629094402300568'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/youtube-search-api-using-c.html' title='youtube search api using  C#'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4642704425004890258</id><published>2009-10-06T00:58:00.003+13:00</published><updated>2009-10-06T01:20:18.613+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Open Source'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Browser'/><title type='text'>Test Your Website in Different Browsers and Platforms</title><content type='html'>ones we develop any application or any website then basically we are testing that site on different browser or different platform but its very time consuming and time taking , at first we have to install that browser and then we have to test that, but if you want to test your web application or website in different browsers,and different platforms in easiest way then  Browser shots will help you.It makes screen shots of your web design in different browsers. It is a free open-source online service.&lt;br /&gt;&lt;br /&gt;its very simple you need to submit your web address, it will be added to the job queue. A number of distributed computers will open your website in their browser. Then they will make screen shots and upload them to the central server of Browsershots. It supports Windows ( Firefox 1.5, Internet Explorer 5.0 and 6.0 ), Mac (Firefox 2.0, Safari 2.0 ), Linux ( Iceweasel 2.0, Konqueror 3.5 ). and more&lt;br /&gt;&lt;br /&gt;you can also test your application here &lt;a href="http://browsershots.org/" target="_blank" rel="nofollow"&gt;http://browsershots.org/ &lt;/a&gt;&lt;br /&gt;its a open source applciation , you can download that images ones you test your application ,and then make a changes according to same,&lt;br /&gt;&lt;br /&gt;hope you like this .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-4642704425004890258?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4642704425004890258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/test-your-website-in-different-browsers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4642704425004890258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4642704425004890258'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/test-your-website-in-different-browsers.html' title='Test Your Website in Different Browsers and Platforms'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-825464695068407445</id><published>2009-10-03T19:38:00.000+13:00</published><updated>2009-10-03T19:42:02.307+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='Free Editors'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>free online editors for your asp.net application</title><content type='html'>Editor is one of the requirement while taking the long input from the user , just like there &lt;br /&gt;long long comments, about us , comments, and many more editor play important role in this case , you can edit that text as per you want you can use all html tags and all to make your reply or comments or text better. &lt;br /&gt; here are the some free online editor you can integrate that on you .net web application.&lt;br /&gt;&lt;br /&gt;1. &lt;strong&gt;widgEditor&lt;/strong&gt;&lt;br /&gt; &lt;br /&gt; &lt;img alt="widgEditor" src="http://devint.dotnetmonitor.com/wp-content/uploads/2008/07/widgeditor-thumb.png" border="0" height="136" width="452"&gt;&lt;br /&gt;    &lt;a href="http://code.google.com/p/widgeditor/downloads/list" target="_blank" rel="nofollow"&gt;Download widgEitor&lt;/a&gt;&lt;br /&gt;       &lt;a href="http://www.themaninblue.com/experiment/widgEditor/" target="_blank"  rel="nofollow"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2.&lt;strong&gt;markItUp&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;img alt="markItUp" src="http://devint.dotnetmonitor.com/wp-content/uploads/2008/07/markitup-thumb.png" border="0" height="139" width="419"&gt;&lt;br /&gt;&lt;a href="http://markitup.jaysalvat.com/downloads/" target="_blank" rel="nofollow" &gt;Download martkUp!&lt;/a&gt;&lt;br /&gt;&lt;a href="http://markitup.jaysalvat.com/examples/skin2/" target="_blank" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3.&lt;strong&gt; Yahoo! UI Text Editor&lt;/strong&gt;&lt;br /&gt;  &lt;br /&gt; &lt;img alt="Yahoo" src="http://devint.dotnetmonitor.com/wp-content/uploads/2008/07/yahoo-thumb.png" border="0" height="148" width="505"&gt;&lt;br /&gt;&lt;a href="http://developer.yahoo.com/yui/download/" target="_blank" rel="nofollow"&gt;Download Yahoo!UI Text Editor&lt;/a&gt;&lt;br /&gt;&lt;a href="http://developer.yahoo.com/yui/examples/editor/index.html" target="_blank"  rel="nofollow"&gt;Examples&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.&lt;strong&gt; NicEdit&lt;/strong&gt; &lt;br /&gt;NicEdit is a Lightweight, Cross Platform, Inline Content Editor&lt;br /&gt;&lt;img alt="NicEdit" src="http://devint.dotnetmonitor.com/wp-content/uploads/2008/07/nicedit-thumb.png" border="0" height="140" width="369"&gt;&lt;br /&gt;&lt;a href="http://nicedit.com/download.php" target="_blank" rel="nofollow"&gt;Download NicEdit&lt;/a&gt;&lt;br /&gt;&lt;a href="http://nicedit.com/demos.php" target="_blank" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5.&lt;strong&gt; JWYSIWYG&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;img alt="JWYSIWYG" src="http://devint.dotnetmonitor.com/wp-content/uploads/2008/07/jwysiwyg-thumb.png" border="0" height="133" width="331"&gt;&lt;br /&gt;&lt;a href="http://code.google.com/p/jwysiwyg/downloads/detail?name=jwysiwyg-0.3.zip" target="_blank" rel="nofollow"&gt;Download JWYSIWYG&lt;/a&gt;&lt;br /&gt;&lt;a href="http://projects.bundleweb.com.ar/jWYSIWYG/" target="_blank" rel="nofollow"&gt;Demo&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;h2&gt;&lt;br /&gt;free online editors for your asp.net application&lt;/h2&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-825464695068407445?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/825464695068407445/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/free-online-editors-for-your-aspnet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/825464695068407445'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/825464695068407445'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/free-online-editors-for-your-aspnet.html' title='free online editors for your asp.net application'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6972645795667506756</id><published>2009-10-02T00:41:00.001+13:00</published><updated>2009-10-02T01:16:31.140+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Enhanced country selection with Css and Javascript</title><content type='html'>When we designing a Registration form , Country &amp; state option are consider, in that time we prefer Drop down option to populate various state or country and user get select one of them , its a very old process , you can redevelop that using ajax, css ,javascript and so many other ways ,&lt;br /&gt;&lt;br /&gt; here is very nice way to select Country using simple CSS and Javascript&lt;br /&gt; &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/SsSdZKlv3aI/AAAAAAAAAKI/LAOUuoQ1xNQ/s1600-h/cssht.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 103px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/SsSdZKlv3aI/AAAAAAAAAKI/LAOUuoQ1xNQ/s200/cssht.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5387604109906927010" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; as you can see , you need to move your mouse over the text box and  various country with there flag drop down get populate and you can selete one of the country on same , and that country name will appear in that text box &lt;br /&gt;&lt;br /&gt; &lt;a href="http://www.emanueleferonato.com/downloads/flags.zip" rel="nofollow"&gt;Download source &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; hope you like it ,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6972645795667506756?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6972645795667506756/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/enhanced-country-selection-with-css-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6972645795667506756'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6972645795667506756'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/10/enhanced-country-selection-with-css-and.html' title='Enhanced country selection with Css and Javascript'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ivbMBZX_-HU/SsSdZKlv3aI/AAAAAAAAAKI/LAOUuoQ1xNQ/s72-c/cssht.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6502785332734435127</id><published>2009-09-29T02:00:00.001+13:00</published><updated>2009-09-29T02:00:33.191+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><category scheme='http://www.blogger.com/atom/ns#' term='Tsql'/><title type='text'>Enabling Database Mail via TSQL</title><content type='html'>&lt;code&gt;&lt;br /&gt;-- allow advanced options&lt;br /&gt;&lt;br /&gt;sp_configure 'show advanced options', 1; &lt;br /&gt;GO &lt;br /&gt;RECONFIGURE; &lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;-- enable database mail (0 disables , 1 enables)&lt;br /&gt; &lt;br /&gt;sp_configure 'Database Mail XPs', 1; &lt;br /&gt;GO &lt;br /&gt;RECONFIGURE &lt;br /&gt;GO&lt;br /&gt;&lt;br /&gt;-- hide advanced options again&lt;br /&gt;&lt;br /&gt;sp_configure 'show advanced options', 0; &lt;br /&gt;GO &lt;br /&gt;RECONFIGURE; &lt;br /&gt;GO &lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6502785332734435127?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6502785332734435127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/enabling-database-mail-via-tsql.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6502785332734435127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6502785332734435127'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/enabling-database-mail-via-tsql.html' title='Enabling Database Mail via TSQL'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8516785965126150772</id><published>2009-09-26T01:52:00.000+13:00</published><updated>2009-09-26T01:53:08.488+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sql'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><title type='text'>sql:Limit SQL Server memory</title><content type='html'>on SQL you can Set memory available to a sql instance&lt;br /&gt;on below example we are setting Limit to the 500MB &lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;    sp_configure 'show advanced options',1  &lt;br /&gt;    go  &lt;br /&gt;    reconfigure  &lt;br /&gt;    go  &lt;br /&gt;      &lt;br /&gt;    sp_configure 'max server memory', 500  &lt;br /&gt;    go  &lt;br /&gt;    reconfigure  &lt;br /&gt;    go  &lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt; like this way you can set the limit server memory, but for precaution you can try this on local machine without running diretly on live server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8516785965126150772?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8516785965126150772/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/sqllimit-sql-server-memory.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8516785965126150772'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8516785965126150772'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/sqllimit-sql-server-memory.html' title='sql:Limit SQL Server memory'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1742564370381343538</id><published>2009-09-24T00:05:00.006+13:00</published><updated>2009-09-29T18:05:51.299+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Templates'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='ajax'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Data Grids with(AJAX,jvaScript, Dhtml)</title><content type='html'>DataGrids is one of the useful control to show data in tabular format with different different records &amp; result, on gridView you can show as many as option which is very much useful for the end user, to handle with Data Grid and all , &lt;br /&gt;&lt;br /&gt;Here are some Data Grid Controls Devlope with ajax/dhtml/and javascript &lt;br /&gt;&lt;br /&gt; 1. &lt;a href="http://extjs.com/playpen/ext-2.0/examples/grid/grid3.html" rel="nofollow"&gt;ExtJs Grid&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/SroBYawUbaI/AAAAAAAAAI4/lVrsSLMMtiA/s1600-h/1.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 127px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/SroBYawUbaI/AAAAAAAAAI4/lVrsSLMMtiA/s200/1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617823485324706" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 2. &lt;a href="http://www.phatfusion.net/sortabletable/index.htm" rel="nofollow"&gt;Phatfusion Sortable&lt;/a&gt; &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SroBYxCdgOI/AAAAAAAAAJA/XogqKVU-eQA/s1600-h/2.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 126px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SroBYxCdgOI/AAAAAAAAAJA/XogqKVU-eQA/s200/2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617829466996962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 3. &lt;a href="http://www.millstream.com.au/upload/code/tablekit/" rel="nofollow"&gt;Table Kit&lt;/a&gt; &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SroBZRWHZnI/AAAAAAAAAJI/q1MohxRiJFE/s1600-h/3.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 170px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SroBZRWHZnI/AAAAAAAAAJI/q1MohxRiJFE/s200/3.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617838139369074" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 4.&lt;a href="http://www.frequency-decoder.com/2006/09/16/unobtrusive-table-sort-script-revisited" rel="nofollow"&gt;Unobtrusive Table Sort Script&lt;/a&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SroBZzlY3RI/AAAAAAAAAJQ/yRcp_FiqJnM/s1600-h/4.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 157px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SroBZzlY3RI/AAAAAAAAAJQ/yRcp_FiqJnM/s200/4.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617847330233618" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 5.&lt;a href="http://developer.yahoo.com/yui/datatable/" rel="nofollow"&gt;Yahoo UI Library’s  DataTables&lt;/a&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SroBaU8-RwI/AAAAAAAAAJY/zldtXMKqE_0/s1600-h/5.gif"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 130px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SroBaU8-RwI/AAAAAAAAAJY/zldtXMKqE_0/s200/5.gif" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617856287524610" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 6.&lt;a href="http://www.workingwith.me.uk/articles/scripting/standardista_table_sorting" rel="nofollow"&gt;Standardista Table Sorting&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/SroBikxcRLI/AAAAAAAAAJg/Um1TzAGwNYc/s1600-h/6.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 118px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/SroBikxcRLI/AAAAAAAAAJg/Um1TzAGwNYc/s200/6.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5384617997973079218" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 7.&lt;a href="http://joomlicious.com/mootable/" rel="nofollow"&gt;Mootable Sorting&lt;/a&gt;.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_ivbMBZX_-HU/SroBjNiaR9I/AAAAAAAAAJo/dmg7b3hFhKk/s1600-h/7.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 97px;" src="http://3.bp.blogspot.com/_ivbMBZX_-HU/SroBjNiaR9I/AAAAAAAAAJo/dmg7b3hFhKk/s200/7.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5384618008915888082" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; hope u like this collection, &lt;br /&gt; if you know more then plz add it on Comments ,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-1742564370381343538?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1742564370381343538/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/data-grids-withajaxjvascript-dhtml.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1742564370381343538'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1742564370381343538'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/data-grids-withajaxjvascript-dhtml.html' title='Data Grids with(AJAX,jvaScript, Dhtml)'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_ivbMBZX_-HU/SroBYawUbaI/AAAAAAAAAI4/lVrsSLMMtiA/s72-c/1.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5895298570391319504</id><published>2009-09-23T01:38:00.004+13:00</published><updated>2009-09-29T18:06:48.661+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>List of CSS Galleries</title><content type='html'>css is one of the part of web applicaiton, you can say that without css your application is not perfect as per the coding standard.&lt;br /&gt; here is an overview of css-galleries you can explore inspiration from.&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.cssclip.com/" rel="nofollow"&gt;CSS Clip&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Web Design Inspiration and Gallery&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://cssblast.ru/" rel="nofollow"&gt;CSS Blast&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Russian CSS Showcase&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.csscollection.com/" rel="nofollow"&gt;CSS Collection&lt;/a&gt;&lt;br&gt;&lt;br /&gt;CSS collection web sites without tables&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://css-demo.com/" rel="nofollow"&gt;CSS-Demo&lt;/a&gt;&lt;br&gt;&lt;br /&gt;CSS Showcase&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.cssbloom.com/" rel="nofollow"&gt;CSSBloom&lt;/a&gt;&lt;br&gt;&lt;br /&gt;CSS Gallery with Blog’s and Online Portfolio’s&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.cssdrive.com"&gt;CSS Drive- Categorized CSS gallery and examples&lt;/a&gt;&lt;br&gt;&lt;br /&gt;CSS gallery, code samples, tutorials, and moreCSS Collection&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.css-design-yorkshire.com/" rel="nofollow"&gt;CSS Design Yorkshire&lt;/a&gt;&lt;br&gt;&lt;br /&gt;A gallery of CSS web design in Yorkshire UK&lt;br /&gt;&lt;p&gt;&lt;a href="http://www.css-design-yorkshire.com/" rel="nofollow"&gt;&lt;img original="http://www.drweb.de/img/gal-6.gif" src="http://www.drweb.de/img/gal-6.gif" alt="Screenshot" border="0" height="375" width="410"&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.cssimport.com" rel="nofollow"&gt;CSS ImportCSS&lt;/a&gt;&lt;br&gt;&lt;br /&gt;The no-frills CSS Gallery&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.cssliquid.com/category/gallery/"&gt;Liquid Designs&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Liquid Designs is a gallery of websites designed with liquid layouts using XHTML and CSS&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.piepmatzel.de" rel="nofollow"&gt;Piepmatzel&lt;/a&gt;&lt;br&gt;&lt;br /&gt;collecting best practice web standards design examples&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.webdigity.com/cssGallery/"&gt;Webdigity&lt;/a&gt;&lt;br&gt;&lt;br /&gt;CSS gallery&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.webstandardsawards.com"  rel="nofollow"&gt;Web Standards Awards&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Awarding web sites that successfully combine form and function&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://www.andybudd.com/links/well_designed_css_sites/index.php" rel="nofollow"&gt;Well Designed CSS Sites&lt;/a&gt;&lt;br&gt;&lt;br /&gt;Andy Budds List of well styled sites.&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if you know more plz add it on comments &lt;a href="http://www.smashingmagazine.com/2006/12/21/creme-de-la-creme-of-css-list-of-css-galleries/" rel="nofollow"&gt;more&lt;/a&gt;.&lt;br /&gt;thanx&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5895298570391319504?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5895298570391319504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/list-of-css-galleries.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5895298570391319504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5895298570391319504'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/list-of-css-galleries.html' title='List of CSS Galleries'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8348061360645440844</id><published>2009-09-23T00:28:00.001+13:00</published><updated>2009-09-23T00:30:42.551+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Cannot implicitly convert type 'object' to 'Microsoft.Office.Interop.Excel.Worksheet'.</title><content type='html'>on C#, there was an Error when you are using Interop Excel Object:-&lt;br /&gt;&lt;br /&gt;Cannot implicitly convert type 'object' to 'Microsoft.Office.Interop.Excel.Worksheet'. An explicit conversion exists (are you missing a cast?) throws up when there is no Explicit casting - (Excel.Worksheet)&lt;br /&gt;&lt;br /&gt;Excel.Worksheet oWorkSt =oWB.Worksheets[1];&lt;br /&gt;&lt;br /&gt;To&lt;br /&gt;&lt;br /&gt;Excel.Worksheet oWorkSt = (Excel.Worksheet)oWorkSt.Worksheets[1];&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/Sri1PwQ3BnI/AAAAAAAAAIg/yJM0xR2qhY0/s1600-h/Cannot+implicitly+convert+type+%27object%27+to+%27Microsoft.Office.Interop.Excel.Worksheet%27..JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 22px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/Sri1PwQ3BnI/AAAAAAAAAIg/yJM0xR2qhY0/s200/Cannot+implicitly+convert+type+%27object%27+to+%27Microsoft.Office.Interop.Excel.Worksheet%27..JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5384252636779710066" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8348061360645440844?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8348061360645440844/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/cannot-implicitly-convert-type-object.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8348061360645440844'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8348061360645440844'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/cannot-implicitly-convert-type-object.html' title='Cannot implicitly convert type &apos;object&apos; to &apos;Microsoft.Office.Interop.Excel.Worksheet&apos;.'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ivbMBZX_-HU/Sri1PwQ3BnI/AAAAAAAAAIg/yJM0xR2qhY0/s72-c/Cannot+implicitly+convert+type+%27object%27+to+%27Microsoft.Office.Interop.Excel.Worksheet%27..JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8189053091990817199</id><published>2009-09-19T01:49:00.001+13:00</published><updated>2009-09-19T01:50:47.736+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Getting Local Network Information</title><content type='html'>on C# when you are performing any application realated with network and in this case if you want information regarding the local network adaptors or local machines network configuration, then you can use the static method &lt;b&gt;System.Net.NetworkInformation.GetAllNetworkInterfaces. &lt;/b&gt; it will returns objects of type NetworkInterface. &lt;br /&gt;The properties of the NetworkInterface object will unravel a rich set of information regarding network configuration and network statistics.&lt;br /&gt;&lt;br /&gt;here is Sample Code:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;using System.Net.NetworkInformation;&lt;br /&gt;&lt;br /&gt;if(NetworkInterface.GetIsNetworkAvailable()){&lt;br /&gt;&lt;br /&gt; NetworkInterface[] nInterface = NetworkInterface.GetAllNetworkInterfaces();&lt;br /&gt;&lt;br /&gt;  foreach(NetworkInterface ni in nInterface ){&lt;br /&gt;   string NetworkName = ni.Name;&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;hope it will helps you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8189053091990817199?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8189053091990817199/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/getting-local-network-information.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8189053091990817199'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8189053091990817199'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/getting-local-network-information.html' title='Getting Local Network Information'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-949826210947495677</id><published>2009-09-11T20:21:00.002+13:00</published><updated>2009-09-29T18:11:20.510+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='ajax'/><title type='text'>Asp.Net with Ajax</title><content type='html'>Before starting with Ajax + asp.net Application you need to do follow. &lt;br /&gt;&lt;br /&gt; at first you know how to configure the ajax framwork to your asp.net application &lt;br /&gt; 1. &lt;a href="http://kirank.blog.com/2009/05/26/configure-ajaxcontol-with-vs2005/"&gt; configure ajax framwork on asp.net application &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 2. &lt;a href="http://www.asp.net/ajax/AjaxControlToolkit/Samples/" rel="nofollow"&gt;Sample code &lt;/a&gt;&lt;br /&gt; &lt;br /&gt; 3. &lt;a href="http://www.asp.net/learn/ajax/" rel="nofollow"&gt; Tutorial &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 4. &lt;a href="http://www.asp.net/learn/ajax-videos/" rel="nofollow"&gt;ajax + .Net Video &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 5. &lt;a href="http://forums.asp.net/default.aspx/34" rel="nofollow"&gt; and if you have any question please ask Here &lt;/a&gt;&lt;br /&gt; &lt;br /&gt; 6. &lt;a href="http://msdn.microsoft.com/en-us/magazine/cc163363.aspx " rel="nofollow"&gt; AJAX Application Architecture &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 7. &lt;a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24645" rel="nofollow"&gt; ASP.NET AJAX 4.0 Preview 4&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; hope it will helps you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-949826210947495677?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/949826210947495677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/aspnet-with-ajax.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/949826210947495677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/949826210947495677'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/aspnet-with-ajax.html' title='Asp.Net with Ajax'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5507268413127423021</id><published>2009-09-10T23:11:00.002+13:00</published><updated>2009-09-29T18:10:34.302+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Microsoft'/><title type='text'>Telos SE7EN next generation application framework</title><content type='html'>hi, today i come up with very much new and cool feature of Mircosoft its a &lt;b&gt;Telos SE7EN next generation application framework &lt;/b&gt; , its really nice which is base on the Microsoft Surface platform.SE7EN: Green Initiative is designed to provide a secure view of your organizations power and processing efficiency, reporting energy consumption, carbon footprint, and facility benchmark and assessment data sets.&lt;br /&gt;&lt;br /&gt;its basically performed using Natural User Interface (NUI). user can do multitasking with the digital content through the natural hands.&lt;br /&gt;&lt;br /&gt;refer : 1. &lt;a href="http://www.telos.com/solutions/secure%20networks/se7en/green/" target="_blank" rel="nofollow"&gt;http://www.telos.com/solutions/secure%20networks/se7en/green/ &lt;/a&gt;&lt;br /&gt;2.&lt;a href="http://www.microsoft.com/surface/Default.aspx" target="_blank" rel="nofollow"&gt;http://www.microsoft.com/surface/Default.aspx&lt;/a&gt;&lt;br /&gt;hope you like it .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5507268413127423021?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5507268413127423021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/telos-se7en-next-generation-application.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5507268413127423021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5507268413127423021'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/telos-se7en-next-generation-application.html' title='Telos SE7EN next generation application framework'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8701359982993614018</id><published>2009-09-09T00:20:00.003+13:00</published><updated>2009-09-09T00:23:16.178+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Runtime Editing Web.config  App.config</title><content type='html'>You can Edit web.config and app.config file on run time also.&lt;br /&gt;Web.config configuration files &amp; app.config project item files, which get converted to "ExecutableName.exe.config" at build time, both support the convenient appSettings section with its own read method in the System.Configuration.ConfigurationSettngs class. The appSettings section stores element name / value pairs in the format:&lt;br /&gt;&lt;br /&gt;&amp;lt;add key="elementName" value="elementValue" /&amp;gt;..... &lt;a href="http://www.eggheadcafe.com/articles/20030907.asp" target="_blank"&gt;more&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8701359982993614018?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8701359982993614018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/runtime-editing-webconfig-appconfig.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8701359982993614018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8701359982993614018'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/runtime-editing-webconfig-appconfig.html' title='Runtime Editing Web.config  App.config'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5396939410066451820</id><published>2009-09-07T21:45:00.004+13:00</published><updated>2009-09-07T21:56:50.243+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><title type='text'>Add Feedburner Email subscription to your site</title><content type='html'>you have see most of the sites,blogs have there email subscription option on there site basically its useful for the out site reader to directly read our new feed . in this process there are so many third party site , tool are available to do that ,&lt;br /&gt;&lt;br /&gt;"FeedBurner is one of them". if you want to add feedburenr account on your site do follow below steps to configure feed burner email subscription tp  your site or blog.&lt;br /&gt;&lt;br /&gt;Steps.&lt;br /&gt;1. At first you need Feed burner account. if you dont have account with feedburner &lt;a href="http://feedburner.google.com/" target="_blank"&gt;click here&lt;/a&gt;&lt;br /&gt;if you have account with google then also ok, you can use that.&lt;br /&gt;&lt;br /&gt;2.now next steps is if your new FeedBurner user then you have to &lt;b&gt;burn your feed&lt;/b&gt; at first,&lt;br /&gt;&lt;br /&gt;3.now you burned a feed to your site or blog.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SqTIhNzxArI/AAAAAAAAAHo/CjfKhuEYvTI/s1600-h/pfeed.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 24px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SqTIhNzxArI/AAAAAAAAAHo/CjfKhuEYvTI/s200/pfeed.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5378644327955235506" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4.now configure your site or blog to show fedburner url for that you have add some htmlcode in your back end,to retrieve this code you need to select publicize &gt; Email Subscription &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SqTIn0y2SJI/AAAAAAAAAHw/wDOo4Sbb3Jo/s1600-h/psub.JPG"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 160px; height: 200px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SqTIn0y2SJI/AAAAAAAAAHw/wDOo4Sbb3Jo/s200/psub.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5378644441499584658" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5.click on that link it , in that page you will get one form tag code simply copy that code and paste it on your site or blog.You can even select your blog type like (Typepad, wordpress, blogger) and it will automatically take to widget option for corresponding blogs system.&lt;br /&gt;&lt;br /&gt;6.now u finish with the coding part , open that page and enter your email id and click subscribe , that it..&lt;br /&gt;&lt;br /&gt;if you want to Subscribe my blog click here , you will get the updates of my blog via email&lt;br /&gt;thank you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5396939410066451820?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5396939410066451820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/add-feedburner-email-subscription-to.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5396939410066451820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5396939410066451820'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/add-feedburner-email-subscription-to.html' title='Add Feedburner Email subscription to your site'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ivbMBZX_-HU/SqTIhNzxArI/AAAAAAAAAHo/CjfKhuEYvTI/s72-c/pfeed.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4202121249077472322</id><published>2009-09-05T00:07:00.006+13:00</published><updated>2010-07-18T19:14:42.934+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>jquery Fadein Fadeout Effect</title><content type='html'>Jquery has Great features , here are some collections of Fade Efects , fade effect is very popular on most of the web application , mostly you can use that for image gallary ,animation and so many purpose. Fade in - Fade out is also one of them.&lt;br /&gt;&lt;br /&gt;try this example hope you like it .&lt;br /&gt;&lt;br /&gt;&lt;script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"&gt;&lt;/script&gt;&lt;script type="text/javascript"&gt;$(document).ready(function(){$("#butFadeOut").click(function () {$("#pFadeInOut").fadeOut(3000);  &lt;br /&gt;});$("#butFadeIn").click(function () {  $("#pFadeInOut").fadeIn(3000);  }); });&lt;/script&gt;&lt;button id="butFadeOut"&gt;Fade Out&lt;/button&gt;&amp;nbsp;&amp;nbsp;&lt;button id="butFadeIn"&gt;Fade In&lt;/button&gt;  &lt;br /&gt;&lt;p id="pFadeInOut"&gt;Example of Fade in and Fadeout&lt;/p&gt;  &lt;br /&gt;&lt;br /&gt;1.&lt;a href="http://www.gruppo4.com/%7Etobia/cross-slide.shtml" target="_blank" rel="nofollow"&gt;CrossSlide&lt;/a&gt;&lt;br /&gt;Cross-site is a plugin which is mostly used to show animation,Slide-show effects but in very nice manner you can do that animation on left side ,zoomin-zoomout like features  are there.&lt;br /&gt;&lt;br /&gt;2.&lt;a rel="nofollow" href="http://www.queness.com/post/152/simple-jquery-image-slide-show-with-semi-transparent-caption" target="_blank"&gt;&lt;br /&gt;Slide Show(Semi-Transparent Caption)&lt;/a&gt;&lt;br /&gt;in this slide show you can add a caption about that images its look very nice, you can do that using css,html and javascript.&lt;br /&gt;&lt;br /&gt;3.&lt;a href="http://www.buildinternet.com/project/supersized/" target="_blank" rel="nofollow"&gt;Supervised&lt;/a&gt;&lt;br /&gt;this is fullscreen sildeshow/background plugin it has some great features like on hover it get pause,cycle preloading,Resizes images&lt;br /&gt;&lt;br /&gt;4.&lt;a href="http://medienfreunde.com/lab/innerfade/" target="_blank" rel="nofollow"&gt;JQuery with InnerFade &lt;/a&gt;&lt;br /&gt;its a very small plugin basically used inside the container. you can add anything with this like images , list-items ,div and many more.&lt;br /&gt;&lt;br /&gt;5.&lt;a href="http://malsup.com/jquery/cycle/" target="_blank" rel="nofollow"&gt;Cycle Plugin&lt;/a&gt;&lt;br /&gt;its a very lightwaight slidshow plugin , basically implment on innerfade , it has may combinations like shuffle images,zoom , fadeturnout, turnover, and so on&lt;br /&gt;&lt;br /&gt;6.&lt;a href="http://greg-j.com/static-content/hover-fade-redux.html" target="_blank" rel="nofollow"&gt;Hover Fade &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;7.&lt;a href="http://pikachoose.com/" target="_blank" rel="nofollow"&gt; Pikachoose&lt;/a&gt;&lt;br /&gt;its just like a Presentation control on which you can show slideshow, navigation buttons and pause , play stop option ,implemantation of pikachoose is very simple.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;8.&lt;a href="http://enhance.qd-creative.co.uk/2008/07/12/an-image-gallery/" target="_blank" rel="nofollow"&gt;an image Gallery&lt;/a&gt;&lt;br /&gt;simple image gallery ,with auto play options.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;hope it likes you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-4202121249077472322?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4202121249077472322/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/jquery-fade-in-fade-out-effect.html#comment-form' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4202121249077472322'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4202121249077472322'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/09/jquery-fade-in-fade-out-effect.html' title='jquery Fadein Fadeout Effect'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-9194944385837899328</id><published>2009-08-29T19:13:00.001+13:00</published><updated>2009-08-29T19:16:19.258+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Templates'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Color Tools For Web Designers</title><content type='html'>Color is very basic key in web development , to identifying exact color or color name is very tedious , so its better you can use the Color tools that can help you to find out the matching color or your required color palette.&lt;br /&gt;&lt;br /&gt;here are some list of sites providing best color tools for web designer to make desing very atractive. &lt;br /&gt;&lt;br /&gt;1-&lt;a target="_blank"  href="http://www.colr.org/"&gt;Colr.org&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHMqAsuWI/AAAAAAAAAGY/o1RvTjzd2jk/s1600-h/1.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHMqAsuWI/AAAAAAAAAGY/o1RvTjzd2jk/s200/1.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265175516264802" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2-&lt;a target="_blank"  href="http://www.ficml.org/jemimap/style/color/wheel.html"&gt;Color Wheels&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_ivbMBZX_-HU/SpjHRVtCB4I/AAAAAAAAAGg/MWO0DJp4aHg/s1600-h/2.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://2.bp.blogspot.com/_ivbMBZX_-HU/SpjHRVtCB4I/AAAAAAAAAGg/MWO0DJp4aHg/s200/2.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265255964411778" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3- &lt;a target="_blank" rel="nofollow" href="http://www.degraeve.com/color-palette/index.php"&gt;Color Palette Generator&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHb2X_PzI/AAAAAAAAAGo/oel2R8vkDpY/s1600-h/3.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHb2X_PzI/AAAAAAAAAGo/oel2R8vkDpY/s200/3.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265436533210930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4-&lt;a target="_blank" href="http://www.modernlifeisrubbish.co.uk/article/web-2.0-colour-palette"&gt;list of Web 2.0 Color Palette&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/SpjHcPs5bgI/AAAAAAAAAGw/imw-qH_YRuI/s1600-h/4.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/SpjHcPs5bgI/AAAAAAAAAGw/imw-qH_YRuI/s200/4.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265443331796482" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;5-&lt;a target="_blank" href="http://colorblender.com/"&gt;Color Blender&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHckrUv9I/AAAAAAAAAG4/idnGgVdFx0c/s1600-h/5.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHckrUv9I/AAAAAAAAAG4/idnGgVdFx0c/s200/5.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265448962342866" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;6-&lt;a target="_blank"  href="http://pourpre.com/colordb/?l=eng"&gt;ColorDB&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHdMvitjI/AAAAAAAAAHA/58ZH3gQ8o2I/s1600-h/6.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHdMvitjI/AAAAAAAAAHA/58ZH3gQ8o2I/s200/6.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265459717453362" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;7-&lt;a target="_blank"  href="http://www.colorhunter.com/"&gt;Color Hunter&lt;/a&gt; &lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHdXEB6tI/AAAAAAAAAHI/edkZQXUqD8g/s1600-h/7.jpg"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 200px; height: 84px;" src="http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHdXEB6tI/AAAAAAAAAHI/edkZQXUqD8g/s200/7.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5375265462487739090" /&gt;&lt;/a&gt;&lt;br /&gt;hope you like this tools&lt;br /&gt;happy coloring ...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-9194944385837899328?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/9194944385837899328/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/color-tools-for-web-designers.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9194944385837899328'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9194944385837899328'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/color-tools-for-web-designers.html' title='Color Tools For Web Designers'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_ivbMBZX_-HU/SpjHMqAsuWI/AAAAAAAAAGY/o1RvTjzd2jk/s72-c/1.jpg' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2491856737280916936</id><published>2009-08-29T18:23:00.000+13:00</published><updated>2009-08-29T18:26:17.762+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Visual Studio 2010'/><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='WAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='Web Deployment'/><title type='text'>Visual Studio 2010 for Web Developer</title><content type='html'>New version of VS 2010 get announced with new features and new look for web devlopes. they are mostly focusing on Dynamic data, MVC arch. and other great feature of Silverlight and some more runtime functionality get added.&lt;br /&gt; &lt;br /&gt;Overview of Visual Studio 2010 - wed Development&lt;br /&gt; Here is the Key area:&lt;br /&gt; - Source View&lt;br /&gt; - Web Development&lt;br /&gt; - Desing View&lt;br /&gt; - DB Deployment&lt;br /&gt;&lt;br /&gt;On the Source view they are ading Html Snippets and some more features of Jscripts Intellisense.&lt;br /&gt;on Web Development process some more web.config Trasformation features and web1 -click features.&lt;br /&gt;and on Desing view - improve the CSS2.1 Supoort and some advance features.&lt;br /&gt;DB Deployment get handle the Packaging and Deploying the databse with your applications &lt;br /&gt;&lt;br /&gt;- You can view the presentation at PDC on this Topics&lt;br /&gt;&lt;a title="http://channel9.msdn.com/pdc2008/TL48/" href="http://channel9.msdn.com/pdc2008/TL48/" mce_href="http://channel9.msdn.com/pdc2008/TL48/"&gt;http://channel9.msdn.com/pdc2008/TL48/&lt;/a&gt; (77.32 mins)&lt;br /&gt;&lt;br /&gt;- yes you can download the beta version of Vs2010 from here&lt;br /&gt; &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&amp;displaylang=en" &gt; http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&amp;displaylang=en &lt;/a&gt;&lt;br /&gt; &lt;br /&gt;you can find more on Visual Studio, Visual Studio 2010 ,VS,VS 10,Web Application Projects,WAP,Web Deployment,MSDeploy&lt;br /&gt;&lt;br /&gt;hope you like this .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2491856737280916936?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2491856737280916936/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/visual-studio-2010-for-web-developer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2491856737280916936'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2491856737280916936'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/visual-studio-2010-for-web-developer.html' title='Visual Studio 2010 for Web Developer'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5041147790398665673</id><published>2009-08-25T01:47:00.002+13:00</published><updated>2009-12-09T19:08:23.309+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>How to Make a Password Strength Meter</title><content type='html'>Password Strength checker is one of the popular &amp; most useful service is there. you have seen on most of the sites they are given some thing like password checking meter in that you can see how &lt;b&gt; Strong your password &lt;/b&gt; is ? &lt;br /&gt;&lt;br /&gt;on Google Registration page you can see on Password textbox ones you enter the password it will show you how string your password is , and depend on that you can change it or keep it as it is .&lt;br /&gt; &lt;br /&gt;now come to the point how we can implement this on your Application.&lt;br /&gt;&lt;br /&gt;- you can download Dome.html file &lt;a href="http://www.codeandcoffee.com/wp-content/uploads/demo.html" target="_blank" rel="nofollow"&gt; from here &lt;/a&gt;&lt;br /&gt; &lt;br /&gt;- and Javascript file &lt;a href="http://www.codeandcoffee.com/wp-content/uploads/pwd_strength.js" target="_blank" rel="nofollow"&gt;from here &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Put your js file on your &amp;lt;head&amp;gt; Section and then call it &lt;br /&gt;&lt;br /&gt;hope it will helps you&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5041147790398665673?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5041147790398665673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-make-password-strength-meter.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5041147790398665673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5041147790398665673'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-make-password-strength-meter.html' title='How to Make a Password Strength Meter'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2708230434682173560</id><published>2009-08-18T18:28:00.000+13:00</published><updated>2009-08-18T18:29:17.375+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><title type='text'>How to Redirect a Web Page</title><content type='html'>Redirecting is one of the technique to move from one location(site or web page ) to another. we have several other way to redirect the pages we can also use IIS or by programetically we can do that .&lt;br /&gt;&lt;br /&gt; ways to Redirecting &lt;br /&gt; 1. IIS Redirect&lt;br /&gt; 2. ASP redirect&lt;br /&gt; 3. ASP.NET redirect&lt;br /&gt; 4. 301 Redirect&lt;br /&gt; 5. JAVA redirect&lt;br /&gt; 6. PHP redirect&lt;br /&gt; 7. CGI redirect&lt;br /&gt; 8. htaccess Redirect&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;1. IIS Redirect&lt;br /&gt; &lt;br /&gt; - while redirecting with IIS its very easy to do, open the IIS , Select proper folder you want to redirect&lt;br /&gt; - select radio buttion on "Redirection to URL "&lt;br /&gt; - enter page name &lt;br /&gt; - select "The exact url entered above" and "A permanent redirection for this resource"&lt;br /&gt; - click apply &lt;br /&gt;&lt;br /&gt; &lt;br /&gt;2. ASP redirect&lt;br /&gt; on Asp redirect its very simple need to mention the page name &lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt;%&lt;br /&gt;   response.redirect "Redirectpagename.asp"&lt;br /&gt; %&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;3.ASP.NET redirect&lt;br /&gt;&lt;code&gt;&lt;br /&gt;private void Page_Load(object sender, System.EventArgs e)&lt;br /&gt;{&lt;br /&gt; Response.Status = "301 Redirect";&lt;br /&gt; Response.AddHeader("Location","http://www.enter-new-url-here.com");&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt; 4. 301 Redirect&lt;br /&gt;&lt;br /&gt; 301 Redirect is one of the Best and Friendly method for webpage Redirection. it will not affect your webpageranking also,if you want to move page or change page around then its a safe and secure method to do .&lt;br /&gt; You can also test your redirection with "Search Engine Friendly Redirect Checker" &lt;br /&gt; there are lot of free tools are availble on net&lt;br /&gt;&lt;br /&gt;5. JAVA redirect&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;%&lt;br /&gt;response.setStatus(301);&lt;br /&gt;response.setHeader( "Location", "http://www.new-location-come.com/" );&lt;br /&gt;response.setHeader( "Connection", "close" );&lt;br /&gt;%&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;6. PHP redirect&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;?&lt;br /&gt;Header( "HTTP/1.1 301 Moved Permanently" );&lt;br /&gt;Header( "Location: http://www.new-location-come-here.com" );&lt;br /&gt;?&amp;gt;&lt;br /&gt; &lt;br /&gt;&lt;/code&gt;&lt;br /&gt; &lt;br /&gt;7. CGI redirect&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$urlvar = new CGI;&lt;br /&gt;print $urlvar-&gt;redirect("http://www.new-location-come-here.com/"); &lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;8. htaccess Redirect&lt;br /&gt;&lt;br /&gt;.htaccess is one of the way also you can redirect your webpage or old domain name to new domain name also. we have to place the .htaccess file on &lt;b&gt;Root &lt;/b&gt; directly of your old website.&lt;br /&gt;&lt;br /&gt;  RewriteRule (.*) http://www.newdomaainnamecomeshere.com/$1 [R=301,L]&lt;br /&gt;&lt;br /&gt; but there is some limitation  this .htaccess method will only worrks on Linux server.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2708230434682173560?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2708230434682173560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-redirect-web-page.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2708230434682173560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2708230434682173560'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-redirect-web-page.html' title='How to Redirect a Web Page'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-7430383136926209898</id><published>2009-08-12T19:09:00.001+13:00</published><updated>2009-09-29T18:07:29.169+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Open Source'/><title type='text'>ASP.Net base Free CMS</title><content type='html'>There is a Free CMS ( Content Management System) system which allows you to Submit the Content without having more or technical knowledge of HTML or knowledge realted with the Uploding the file to the server.&lt;br /&gt;&lt;br /&gt; Here are the free asp.net base Systems- &lt;br /&gt;&lt;br /&gt; - &lt;a href="http://www.kentico.com/" rel="nofollow"&gt;Kentico CMS&lt;/a&gt;&lt;br /&gt; - &lt;a href="http://www.axcms.net/" rel="nofollow"&gt;AxCMS.net &lt;/a&gt;&lt;br /&gt; - &lt;a href="http://www.dotnetnuke.com/" rel="nofollow"&gt;DotNetNuke&lt;/a&gt;&lt;br /&gt; - &lt;a href="http://xpress.sitecore.net rel="nofollow" "&gt;Sitecore Xpress&lt;/a&gt;&lt;br /&gt;&lt;br /&gt; with Open Source . &lt;br /&gt; &lt;br /&gt; - &lt;a href="http://sourceforge.net/projects/sharpnukenet/" rel="nofollow"&gt;SharpNuke.NET&lt;/a&gt; &lt;br /&gt; - &lt;a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=TheBeerHouse" rel="nofollow"&gt;TheBeerHouse: CMS &amp;amp; E-commerce Site Starter Kit&lt;/a&gt;&lt;br /&gt; - &lt;a href="http://www.rainbowportal.net/" rel="nofollow"&gt;Rainbow &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; Free CMS,Open Source Asp.Net Projects&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-7430383136926209898?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/7430383136926209898/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/aspnet-base-free-cms.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7430383136926209898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7430383136926209898'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/aspnet-base-free-cms.html' title='ASP.Net base Free CMS'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-7668520253042655657</id><published>2009-08-11T00:45:00.000+13:00</published><updated>2009-08-11T00:47:29.797+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Get Temporary Folder using .Net (C#)</title><content type='html'>In asp.net we need Temorary folder to add logs while execution of the Program, or you can sa any other purpose also like Storing files means we have .zip file and we want to access one of the file from that zip file so at first i will simply decompress it and store it on Temp folder and from them i will simply access it.&lt;br /&gt;&lt;br /&gt;In this case Folder location is different from OS to OS , here you can get how to get the &lt;br /&gt;temp folder path using C#&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;     String Path;&lt;br /&gt;      Path = Path.GetTempPath();&lt;br /&gt;      Response.write("Temp Path is -"+ Path);&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;C# Temporary Folder, Temporary Folder using .NET (C#)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-7668520253042655657?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/7668520253042655657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/get-temporary-folder-using-net-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7668520253042655657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7668520253042655657'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/get-temporary-folder-using-net-c.html' title='Get Temporary Folder using .Net (C#)'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1757031877914723215</id><published>2009-08-07T19:04:00.001+13:00</published><updated>2009-09-29T18:09:34.317+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Silverlight'/><title type='text'>Silverlight Installation Steps.</title><content type='html'>For long year back,  if we want the animation on webpage then it has been very restricted &lt;br /&gt; and for that we have to use gif, flash or any other type of animation .But now Microsoft has introduce new product call "Silverlight".&lt;br /&gt;&lt;br /&gt;  Silverlight is basically a new cross-browser and cross-platform of .Net Framework for Media experience and RIA for the web.Currently there is Silverlight 3.0 Version is going on.&lt;br /&gt;&lt;br /&gt;  There are some Cool features with New Release Silverlight 3.0 &lt;br /&gt;   . Printing&lt;br /&gt;   . Support to PDF&lt;br /&gt;   . Database synchronization&lt;br /&gt;   . 3D&lt;br /&gt;   . Blend modes&lt;br /&gt;   . Install Silverlight on Desktop&lt;br /&gt;   . Access all HardDrive&lt;br /&gt;   . Supoort to  USB&lt;br /&gt;   . Frame base Animation &lt;br /&gt; &lt;br /&gt;   and much more..&lt;br /&gt;&lt;br /&gt; &lt;b&gt;Steps to install the Silverlight. &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;  1. Install the Silverlight on your machine if you dont have that then download it from &lt;br /&gt; follow link &lt;br /&gt;   &lt;a href="http://silverlight.net/GetStarted/" target="_blank" rel="nofollow"&gt; Download Silverlight &lt;/a&gt;&lt;br /&gt; &lt;br /&gt;  2.it will open Microsoft silverlight installation page&lt;br /&gt;  &lt;br /&gt;  3.now click on install to download the silverlight plugin&lt;br /&gt; &lt;br /&gt;  4.ones the installation get finish Restart your Browser.&lt;br /&gt;   ( it will work on all the browsers like Mozilla, opera , IE , netscape)&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;  steps to uninstallation of silverlight &lt;br /&gt;&lt;br /&gt;  1. Go to Control panel , open Add and Remove Program&lt;br /&gt;&lt;br /&gt;  2. Choose Microsfot Silverlight opetion and click on Remove&lt;br /&gt; &lt;br /&gt;  &lt;br /&gt; There are lot many things are there in Silverlight &lt;br /&gt; Below are the useful for Silverlight.&lt;br /&gt;&lt;br /&gt; - &lt;a href="http://silverlight.net/" target="_blank" rel="nofollow"&gt;Microsoft Silverlight Site  &lt;/a&gt;&lt;br /&gt; - &lt;a href="http://silverlight.net/forums/ " target="_blank" rel="nofollow"&gt;Silverlight Forums &lt;/a&gt;&lt;br /&gt; - &lt;a href="http://silverlight.net/Learn/ " target="_blank" rel="nofollow"&gt;Learn Silverlight &lt;/a&gt;&lt;br /&gt; - &lt;a href="http://www.silverlightexamples.net/ " target="_blank" rel="nofollow"&gt;Silverlight Examples &lt;/a&gt;&lt;br /&gt; &lt;br /&gt; hope it will help you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-1757031877914723215?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1757031877914723215/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/silverlight-installation-steps.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1757031877914723215'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1757031877914723215'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/silverlight-installation-steps.html' title='Silverlight Installation Steps.'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2605849000338274188</id><published>2009-08-05T22:41:00.000+13:00</published><updated>2009-08-05T22:43:42.911+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Silverlight Examples'/><title type='text'>Create a Video player using Silverlight</title><content type='html'>Here is very cool and clean Example on how to Create a Video player using a  &lt;br /&gt; "Silverlight 2" &lt;br /&gt; &lt;br /&gt; &lt;A href="http://www.85turns.com/2008/04/02/create-a-video-player-silverlight-2-part-1/" target="_blank"&gt; Create a Video player &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2605849000338274188?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2605849000338274188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/create-video-player-using-silverlight.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2605849000338274188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2605849000338274188'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/create-video-player-using-silverlight.html' title='Create a Video player using Silverlight'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6529665788462259258</id><published>2009-08-05T21:58:00.000+13:00</published><updated>2009-08-05T22:00:44.009+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='Tips and Tricks'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>check userid already exists or not when register.</title><content type='html'>hi, we have seen most of the website showing a message "user all ready there please use &lt;br /&gt;&lt;br /&gt;something else" like such kind of message, &lt;br /&gt; now how to trace that? there are lot many ways to show such kind of message to user without &lt;br /&gt;&lt;br /&gt;redirecting to another page. In this case you can use Either JavaScript / JQuery / Ajax &lt;br /&gt;&lt;br /&gt; Here i am using JavaScript to do so. below example will clear you.&lt;br /&gt; on Html panal put this code&lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt;asp:TextBox ID="CusID" MaxLength="15" TabIndex="1" runat="Server"&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&lt;br /&gt; &amp;lt;asp:Button ID="Submit" TabIndex="25" Text="Submit" runat="Server" OnClick="Submit_Click" /&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;  &lt;br /&gt;  and on Codebehind paste this  &lt;br /&gt; &lt;code&gt;&lt;br /&gt;    &lt;br /&gt;    SqlDataReader dr;&lt;br /&gt;    SqlCommand cmd = new SqlCommand();&lt;br /&gt;    String Msg;&lt;br /&gt;&lt;br /&gt;    protected void Submit_Click(object sender, EventArgs e)&lt;br /&gt;    { &lt;br /&gt;        cmd.CommandText = "select id from loginstat where cusid=@cusid";&lt;br /&gt;        cmd.Parameters.Add(new SqlParameter("@cusid",CusID.Text));&lt;br /&gt;        dr = cmd.ExecuteReader();&lt;br /&gt;        if (dr.HasRows)&lt;br /&gt;        {&lt;br /&gt;            Msg = "&amp;lt;script language=javascript&amp;gt;alert('User ID allready Exists '); &amp;lt;/script&amp;gt;";&lt;br /&gt;            ClientScript.RegisterStartupScript(this.GetType(), "Msg", Msg);&lt;br /&gt;            dr.Close();&lt;br /&gt;        }&lt;br /&gt;        else&lt;br /&gt;        {&lt;br /&gt;            dr.Close();&lt;br /&gt;            string StrSql = "insert into loginstat(id) values(@id)";&lt;br /&gt;      cmd.Parameters.Add(new SqlParameter("@id", CusID.Text));&lt;br /&gt;      cmd.CommandText = StrSql;&lt;br /&gt;            cmd.ExecuteNonQuery();&lt;br /&gt;            dr.Close();&lt;br /&gt;        }&lt;br /&gt;        dr.Close();&lt;br /&gt;    }            &lt;br /&gt; &lt;/code&gt;&lt;br /&gt; &lt;br /&gt; Like this way also you can check and cusid not found on database then it will insert that recrod into database.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6529665788462259258?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6529665788462259258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/check-userid-already-exists-or-not-when.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6529665788462259258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6529665788462259258'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/check-userid-already-exists-or-not-when.html' title='check userid already exists or not when register.'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-3997625745421524254</id><published>2009-08-04T01:15:00.000+13:00</published><updated>2009-08-04T01:18:15.132+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>How to get Current Page Url</title><content type='html'>in asp sometime we required current page URL, if u r using JavaScript then u can easily get it by using location.href or one way is HTTP_REFEREL but it will give  you Previous page name &lt;br /&gt;&lt;br /&gt; now look at here how we can get the Current page URL&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt; %&lt;br /&gt;&lt;br /&gt; function pageurl()&lt;br /&gt;&lt;br /&gt; serverName = Request.ServerVariables("SERVER_NAME") &lt;br /&gt; ScriptName = Request.ServerVariables("SCRIPT_NAME") &lt;br /&gt; &lt;br /&gt; if Request.ServerVariables("HTTPS") = "on" then secure = "s"&lt;br /&gt; &lt;br /&gt; prt = strleft(LCase(Request.ServerVariables("SERVER_PROTOCOL")), "/")  &amp; secure&lt;br /&gt; &lt;br /&gt; if Request.ServerVariables("SERVER_PORT") = "80" then&lt;br /&gt;   port = ""&lt;br /&gt; else&lt;br /&gt;   port = ":" &amp; Request.ServerVariables("SERVER_PORT")&lt;br /&gt; end if &lt;br /&gt;&lt;br /&gt; pageurl = prt &amp; "://" &amp; serverName &amp; port &amp; ScriptName &lt;br /&gt;&lt;br /&gt; end function&lt;br /&gt;&lt;br /&gt; %&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; Here is a function which will generate pageurl to call this use &lt;br /&gt; &lt;br /&gt; &lt;code&gt;&lt;br /&gt;  &amp;lt;% response.write (pageurl) %&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; if page had Querystring  you can also retrive that like this &lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt; %&lt;br /&gt;   Qstring = Request.ServerVariables("QUERY_STRING")&lt;br /&gt;   response.write(pageurl() &amp; "?" &amp; Qstring )&lt;br /&gt; % &amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; hope it will helps you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-3997625745421524254?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/3997625745421524254/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-get-current-page-url.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/3997625745421524254'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/3997625745421524254'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/08/how-to-get-current-page-url.html' title='How to get Current Page Url'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5160593441136142472</id><published>2009-08-01T02:06:00.002+13:00</published><updated>2009-10-07T21:50:10.672+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='API'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='Youtube'/><title type='text'>YouTube API in C#</title><content type='html'>Now you can add the YouTube Video Feature into ASP.NET Web page, there are so many &lt;br /&gt;&lt;br /&gt;customization option on it.&lt;br /&gt;There are the : -&lt;br /&gt;&lt;br /&gt;1. API enables selecting the item from the playlist&lt;br /&gt;2. setting the autoplay mode and object size (W/H)&lt;br /&gt;3. Start up options could be set by using Web Query as an example, the following query sets &lt;br /&gt;&lt;br /&gt;autoplay option and selected item index=2 &lt;br /&gt;&lt;br /&gt;(see the sample screenshot following):&lt;br /&gt;http://www.webinfocentral.com/RESOURCES/YouTubeMusicVideo.aspx?item=2&amp;auto=1&lt;br /&gt;&lt;br /&gt; &lt;A href="http://youtubeasp.codeplex.com/" target="_blank" rel="nofollow"&gt;for more Demonstration and code &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5160593441136142472?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5160593441136142472/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/youtube-api-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5160593441136142472'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5160593441136142472'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/youtube-api-in-c.html' title='YouTube API in C#'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-7541646495798100592</id><published>2009-07-30T01:45:00.000+13:00</published><updated>2009-07-30T01:48:41.592+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='gridView'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>merge the header row for the GridView control</title><content type='html'>some time we want to merge the Gridview Content as well as the Header also ,it was very easy in html you need to simply add the &lt;b&gt; Colspan &lt;/b&gt; attribute and with the help of that you can set is (2, 3 )what ever you want.&lt;br /&gt;&lt;br /&gt; Here is the way you can do that same thing in C#&lt;br /&gt; &lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt;asp:gridview id="GridView1" runat="server" allowpaging="True" autogeneratecolumns="False"&lt;br /&gt; datakeynames="ProductID" datasourceid="SqlDataSource1" onrowdatabound="GridView1_RowDataBound"&amp;gt;&lt;br /&gt; &amp;lt;columns&amp;gt;&lt;br /&gt;  &amp;lt;asp:boundfield datafield="ProductID" headertext="ProductID" insertvisible="False"&lt;br /&gt;   readonly="True" sortexpression="ProductID" /&amp;gt;&lt;br /&gt;  &amp;lt;asp:boundfield datafield="ProductName" headertext="ProductName" sortexpression="ProductName" /&amp;gt;&lt;br /&gt;  &amp;lt;asp:boundfield datafield="CategoryID" headertext="CategoryID" sortexpression="CategoryID" /&amp;gt;&lt;br /&gt;  &amp;lt;asp:boundfield datafield="CategoryName" headertext="CategoryName" sortexpression="CategoryName" /&amp;gt;&lt;br /&gt; &amp;lt;/columns&amp;gt;&lt;br /&gt;&amp;lt;/asp:gridview&amp;gt;&lt;br /&gt;&amp;lt;asp:sqldatasource id="SqlDataSource1" runat="server" connectionstring="&amp;lt;%$ ConnectionStrings:NorthwindConnectionString %&amp;gt;"&lt;br /&gt; selectcommand="SELECT [ProductID], [ProductName], [CategoryID], [CategoryName] FROM Product_Details"&amp;gt;&lt;br /&gt;&amp;lt;/asp:sqldatasource&amp;gt;&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; and here is CODEBEHIND Source&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)&lt;br /&gt;{&lt;br /&gt; GridViewRow gvr = e.Row;&lt;br /&gt;&lt;br /&gt; if (gvr.RowType == DataControlRowType.Header)&lt;br /&gt; {&lt;br /&gt;  GridViewRow row = new GridViewRow(0, 0, DataControlRowType.Header, DataControlRowState.Normal);&lt;br /&gt;  &lt;br /&gt;  TableCell cell = new TableCell();&lt;br /&gt;  cell.ColumnSpan = 2;&lt;br /&gt;  cell.HorizontalAlign = HorizontalAlign.Center;&lt;br /&gt;  cell.Text = "Product";&lt;br /&gt;  row.Cells.Add(cell);&lt;br /&gt;&lt;br /&gt;  cell = new TableCell();&lt;br /&gt;  cell.ColumnSpan = 2;&lt;br /&gt;  cell.HorizontalAlign = HorizontalAlign.Center;&lt;br /&gt;  cell.Text = "Category";&lt;br /&gt;  row.Cells.Add(cell);&lt;br /&gt;&lt;br /&gt;  GridView1.Controls[0].Controls.AddAt(0, row);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt; &lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-7541646495798100592?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/7541646495798100592/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/merge-header-row-for-gridview-control.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7541646495798100592'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/7541646495798100592'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/merge-header-row-for-gridview-control.html' title='merge the header row for the GridView control'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6066005737774806324</id><published>2009-07-30T00:00:00.001+13:00</published><updated>2009-12-02T17:55:16.844+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>jQuery Lightbox-Clones Plugin</title><content type='html'>1.jQuery FancyZoom&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$(document).ready(function() {&lt;br /&gt;   $('a.zoom').fancyZoom();&lt;br /&gt;});&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;here is a Zoom  Effect plugin , this will shows the Content realted with the id Refrence and&lt;br /&gt;&lt;br /&gt;the href of the mention tag. &lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://orderedlist.com/demos/fancy-zoom-jquery/"&gt;DEMO   &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://github.com/jnunemaker/fancy-zoom/tree/master"&gt;DOWNLOAD Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.FancyBox&lt;br /&gt;&lt;br /&gt;FancyBox is one of the Great among Lightbox clones. its also very easy and smooth in&lt;br /&gt;&lt;br /&gt;animation. there are some cool animation Effects:&lt;br /&gt;- you can easity cutomize it&lt;br /&gt;- you can also group realted item&lt;br /&gt;&lt;br /&gt;here is sample code to do so.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;$(document).ready(function() { &lt;br /&gt;$("p#Ver1 a").fancybox(); &lt;br /&gt;$("p#Ver2 a").fancybox({ 'hideOnContentClick': true }); &lt;br /&gt;$("p#Ver3 a").fancybox({ &lt;br /&gt; 'overlayShow': true,&lt;br /&gt; 'zoomSpeedIn': 0,&lt;br /&gt;               'zoomSpeedOut': 0&lt;br /&gt;               &lt;br /&gt;}); &lt;br /&gt;});&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://fancy.klade.lv/" rel="nofollow"&gt;DEMO        &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://fancy.klade.lv/" rel="nofollow"&gt;DOWNLOAD Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Pirobox&lt;br /&gt;this is also cool and with more features.&lt;br /&gt;but before that download the below dependancies&lt;br /&gt;&lt;br /&gt;  1. css_pirobox/pirobox.css&lt;br /&gt;  2. pirobox_packed.js&lt;br /&gt;  3. js/jquery1.2.6.js&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://www.pirolab.it/pirobox/"&gt;DEMO    &lt;/a&gt;&lt;br /&gt;&lt;a class="download-dl" rel="nofollow" target="_blank" href="http://www.pirolab.it/pirobox/"&gt;DOWNLOAD Here &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4.ThickBox&lt;br /&gt;&lt;br /&gt;thickBox is a UI dialog widget which is written in a Javascript , with cool feature in that you can show single image, multiple image, inline image and so on other feature&lt;br /&gt;&lt;br /&gt;Feature : -&lt;br /&gt; 1 - Thinkbox was build with LightWeight Jquery Library&lt;br /&gt; 2 - Hide form elements in IE 6&lt;br /&gt; 3 - You can easily resize  also.&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://jquery.com/demo/thickbox/"&gt;DEMO         &lt;/a&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://jquery.com/demo/thickbox/"&gt;DOWNLOAD Here &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;5.NyroModal&lt;br /&gt;&lt;br /&gt;Feature : -&lt;br /&gt;&lt;br /&gt;1 - Ajax call&lt;br /&gt;2 - Form&lt;br /&gt;3 - Iframe&lt;br /&gt;4 - Manual call&lt;br /&gt;5 - Error Handling&lt;br /&gt;6 - Esc key to exit&lt;br /&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://nyromodal.nyrodev.com/"&gt;DEMO        &lt;/a&gt;&lt;br /&gt;&lt;a target="_blank" rel="nofollow" href="http://nyromodal.nyrodev.com/"&gt;DOWNLOAD Here&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;hope u like this collection , if u found out more then plz reply here or feel free to drop an comments&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6066005737774806324?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6066005737774806324/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/jquery-lightbox-clones-plugin.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6066005737774806324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6066005737774806324'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/jquery-lightbox-clones-plugin.html' title='jQuery Lightbox-Clones Plugin'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2629864895565119335</id><published>2009-07-29T19:13:00.000+13:00</published><updated>2009-07-29T19:16:16.710+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><title type='text'>Select Recods from Checkbox and Preform operation Delete or Move .</title><content type='html'>hi, &lt;br /&gt;  again i come up with new tricks of &lt;b&gt; GridView &lt;/b&gt; in that you can Delete / Update / Move &lt;br /&gt;  seleted records from Gridview, take a Example of Gmail inbox it shows total number of mail   on your "Inbox" in that have a option like Delete , move to another folder , Delete all , and so on, same feature you can add in your Gridview &lt;br /&gt;&lt;br /&gt; look at the Below Example hope u like it .&lt;br /&gt; &lt;b&gt; Steps &lt;/b&gt;  &lt;br /&gt;1.using javaScript we can select Or deselect the record from GridView&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;asp:GridView ID="GridView1" datakeyname="Mailid" runat="server" &lt;br /&gt;&lt;br /&gt;DataSourceID="Sqldatasource1"&amp;gt;&lt;br /&gt;&amp;lt;Columns&amp;gt;&lt;br /&gt;&amp;lt;asp:TemplateField&amp;gt;&lt;br /&gt;&amp;lt;HeaderTemplate&amp;gt;&lt;br /&gt;     &amp;lt;asp:CheckBox ID="CheckAll"  runat="server" onclick="return check(this);"/&amp;gt;&lt;br /&gt;&amp;lt;/HeaderTemplate&amp;gt;&lt;br /&gt;&amp;lt;ItemTemplate&amp;gt;&lt;br /&gt;    &amp;lt;asp:Label ID="MailID" runat="Server" &lt;br /&gt;    Text='&amp;lt;%# DataBinder.Eval (Container.DataItem, "MailID") %&amp;gt;'&lt;br /&gt;     /&amp;gt;&lt;br /&gt;    &amp;lt;asp:CheckBox ID="DeleteRec" runat="server" onclick="return check(this);"/&amp;gt;&lt;br /&gt;&amp;lt;/ItemTemplate&amp;gt;&lt;br /&gt;&amp;lt;/asp:TemplateField&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/asp:GridView&amp;gt;&lt;br /&gt;&amp;lt;asp:SqlDataSource ID="Sqldatasource1" runat="server"&lt;br /&gt; SelectCommand="Select MailId,MailBody,Date,To,From from MailInbox"            &lt;br /&gt;ConnectionString="Server=MailEngine;uid=sa;password=;database=Inbox"&amp;gt;&lt;br /&gt;&amp;lt;/asp:SqlDataSource&amp;gt;&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;2. we have Button Which act as a Delete /Move / Upadate Operation.&lt;br /&gt;&lt;code&gt;&lt;br /&gt; &amp;lt;asp:Button ID="Button1" OnClientClick="return confirmMsg(this.form)"&lt;br /&gt;Text="Move" OnClick="Button1_Click" runat="server" /&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;3. Javascript code which can check the if any of Coloum get Select or Deselected.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;function check(Val)&lt;br /&gt;{&lt;br /&gt;  var MailChecked = Val.checked;&lt;br /&gt;  var MailId = Val.id;&lt;br /&gt;  var frm = document.forms[0];&lt;br /&gt;&lt;br /&gt;  // Loop through all Records in GridView&lt;br /&gt;&lt;br /&gt;  for (i = 0; i &lt; frm.length; i++)&lt;br /&gt;  {&lt;br /&gt;    // Also Check if the Heder Template Option get Checked or Not&lt;br /&gt;    if (this != null)&lt;br /&gt;    {&lt;br /&gt;      if (MailId.indexOf('CheckAll') !=  - 1)&lt;br /&gt;      {&lt;br /&gt;        // Now check if Header template checkbox is Checked so it will Delete/Move all the &lt;br /&gt;&lt;br /&gt;Records ,&lt;br /&gt;        // Then select or deselect datagrid checkboxes&lt;br /&gt;        if (MailChecked)&lt;br /&gt;          frm.elements[i].checked = true;&lt;br /&gt;        else&lt;br /&gt;          frm.elements[i].checked = false;&lt;br /&gt;      }&lt;br /&gt;      else if (MailId.indexOf('DeleteRec') !=  - 1)&lt;br /&gt;      {&lt;br /&gt;        // Check if any of the checkboxes are not checked, &lt;br /&gt;         and then uncheck top select all checkbox&lt;br /&gt;        if (frm.elements[i].checked == false)&lt;br /&gt;          frm.elements[1].checked = false;&lt;br /&gt;      }&lt;br /&gt;    } &lt;br /&gt;  } &lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;4.Now we can Configure Move/Delete Configration Message .&lt;br /&gt; &lt;code&gt;&lt;br /&gt;function confirmMsg(frm)&lt;br /&gt;{&lt;br /&gt;  // Now Again gone through the All the Gridview Elements&lt;br /&gt;  for (i = 0; i &lt; frm.length; i++)&lt;br /&gt;  {&lt;br /&gt;    // Check for checkboxes only&lt;br /&gt;    if (frm.elements[i].name.indexOf("DeleteRec") !=  - 1)&lt;br /&gt;    {&lt;br /&gt;      // Show Alert message to End user to Really want to Delete / Move .&lt;br /&gt;      if (frm.elements[i].checked)&lt;br /&gt;      return confirm('Do you really want to Move/Delete Seleted Item')&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;5. on CodeBehind Button1_Click Event Perform the Action.&lt;br /&gt;   &lt;code&gt;&lt;br /&gt;protected void Button1_Click(object sender, EventArgs e)&lt;br /&gt;{&lt;br /&gt; bool chkBox = false;  &lt;br /&gt; string GvID = "";&lt;br /&gt;  &lt;br /&gt;  //Check each row in GridView for Select ot not.&lt;br /&gt;&lt;br /&gt;  foreach (GridViewRow gv in GridView1.Rows)&lt;br /&gt;  {&lt;br /&gt;    CheckBox MoveSelectedCheck = (CheckBox)gv.FindControl("DeleteRec");&lt;br /&gt;    if (MoveSelectedCheck.Checked)&lt;br /&gt;    {&lt;br /&gt;      chkBox = true;&lt;br /&gt;      // add the Seleted item with (;) so it can delete that or Move that &lt;br /&gt;      GvID += ((Label)gv.FindControl("MailID")).Text.ToString() + ",";&lt;br /&gt;    }&lt;br /&gt;  }&lt;br /&gt; &lt;br /&gt;  SqlConnection conn = // Define Connection String. &lt;br /&gt;  if (chkBox)&lt;br /&gt;  {&lt;br /&gt;    try&lt;br /&gt;    {&lt;br /&gt;      // Suppose Folder name or Lable name is (OldMail)&lt;br /&gt;      string MoveRec = "Update MailBox set Label ='+ OldMail +' where MailID IN (" +&lt;br /&gt;      GvID.Substring(0, GvID.LastIndexOf(",")) + ")";&lt;br /&gt;      SqlCommand cmd = new SqlCommand(MoveRec, conn);&lt;br /&gt;      conn.Open();&lt;br /&gt;      cmd.ExecuteNonQuery();&lt;br /&gt;      GridView1.DataBind();&lt;br /&gt;    }&lt;br /&gt;    catch (SqlException err)&lt;br /&gt;    {&lt;br /&gt;      Response.Write("Error at :-"+err);&lt;br /&gt;    }&lt;br /&gt;    finally&lt;br /&gt;    {&lt;br /&gt;      conn.Close();&lt;br /&gt;    }&lt;br /&gt; &lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Like this you can Perform Deletion or Updataion or Moving Oepration ,&lt;br /&gt;if you are Deleting Records then its very easy you can use &lt;b&gt; Delete query &lt;/b&gt;&lt;br /&gt;if it is Updation use &lt;b&gt; Update &lt;/b&gt; query .But in the case of Moving just like (Gmail inbox ) you have one option you can set the Status of that Seleted Mail as (Name of Folder) just like (Label part in Gmail )&lt;br /&gt;&lt;br /&gt;and when you get click on that lable do code such that, Check if the any records from Gridview are Marked as (Lable name ) and you query according to same.&lt;br /&gt;&lt;br /&gt;plz comment on it , if u have any query .......&lt;br /&gt;Happy coding,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2629864895565119335?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2629864895565119335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/select-recods-from-checkbox-and-preform.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2629864895565119335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2629864895565119335'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/select-recods-from-checkbox-and-preform.html' title='Select Recods from Checkbox and Preform operation Delete or Move .'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8231700952564307456</id><published>2009-07-29T01:01:00.001+13:00</published><updated>2009-07-29T01:01:29.316+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Xml'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Parsing RSS feeds with XMLHttpRequest Object</title><content type='html'>You can parse RSS feeds with thehelp of XMLHttpRequest Object means using javascript or ajax &lt;br /&gt;&lt;br /&gt;or jquery . what you have to do in this case is ones you ot the Xml Object you can traverse it &lt;br /&gt;&lt;br /&gt;via DOM (Document Object Model).&lt;br /&gt;&lt;br /&gt;here is some example which shows how u can done xml Parsing&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;script type="text/javascript" language="javascript"&amp;gt;&lt;br /&gt;var XMLObjString = '\&lt;br /&gt;&amp;lt;rss version="2.0"&amp;gt;\&lt;br /&gt;&amp;lt;channel&amp;gt;\&lt;br /&gt;   &amp;lt;title&amp;gt;Test&amp;lt;/title&amp;gt;\&lt;br /&gt;   &amp;lt;link&amp;gt;http://www.xyz.com/&amp;lt;/link&amp;gt;\&lt;br /&gt;   &amp;lt;description&amp;gt;RSS Feed&amp;lt;/description&amp;gt;\&lt;br /&gt;   &amp;lt;language&amp;gt;EN&amp;lt;/language&amp;gt;\&lt;br /&gt;   &amp;lt;image&amp;gt;\&lt;br /&gt;      &amp;lt;url&amp;gt;http://www.xyz.com/images/test.gif&amp;lt;/url&amp;gt;\&lt;br /&gt;   &amp;lt;/image&amp;gt;\&lt;br /&gt;   &amp;lt;category&amp;gt;JavaScript&amp;lt;/category&amp;gt;\&lt;br /&gt;   &amp;lt;item&amp;gt;\&lt;br /&gt;      &amp;lt;title&amp;gt;5:20 PM 7/28/2009&amp;lt;/title&amp;gt;\&lt;br /&gt;      &amp;lt;link&amp;gt;http://www.xyz.com/index.html&amp;lt;/link&amp;gt;\&lt;br /&gt;      &amp;lt;description&amp;gt;&lt;br /&gt;            This is index page | Message at : 5:24 PM 7/28/2009&lt;br /&gt;      &amp;lt;/description&amp;gt;\&lt;br /&gt;   &amp;lt;/item&amp;gt;\&lt;br /&gt;&amp;lt;/channel&amp;gt;\&lt;br /&gt;&amp;lt;/rss&amp;gt;';&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// Now convert string to XML object&lt;br /&gt;&lt;br /&gt;var xmlobj = (new DOMParser()).parseFromString(XMLObjString, "text/xml");&lt;br /&gt;&lt;br /&gt;// set the reference to the root-element "rss"&lt;br /&gt;var root = xmlobject.getElementsByTagName('rss')[0];&lt;br /&gt;&lt;br /&gt;// like that you can set reference to "channel" element&lt;br /&gt;var channels = root.getElementsByTagName("channel");&lt;br /&gt;&lt;br /&gt;// find all the "item" tags in the channel&lt;br /&gt;var items = channels[0].getElementsByTagName("item");&lt;br /&gt;&lt;br /&gt;// in the "item" find the Description to get the Desc also.&lt;br /&gt;var descriptions = items[0].getElementsByTagName("description");&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// you can also get the actual description as string&lt;br /&gt;var desc = descriptions[0].firstChild.nodeValue;&lt;br /&gt;&lt;br /&gt;// now split the string - description is element &lt;br /&gt;&lt;br /&gt;var Descarray = desc.split("|");&lt;br /&gt;var Message = Descarray[1];&lt;br /&gt;&lt;br /&gt;// now we have the RSS data we want as strings&lt;br /&gt;alert(Message);&lt;br /&gt;&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Now you can get the data at "&lt;b&gt;alert(Message);&lt;/b&gt; tag you can use it whenever you want&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8231700952564307456?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8231700952564307456/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/parsing-rss-feeds-with-xmlhttprequest.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8231700952564307456'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8231700952564307456'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/parsing-rss-feeds-with-xmlhttprequest.html' title='Parsing RSS feeds with XMLHttpRequest Object'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2445608145111128357</id><published>2009-07-28T01:23:00.000+13:00</published><updated>2009-07-29T00:44:21.381+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Jquery form Post request</title><content type='html'>hi , i have seen this on many website without refreshing a webpage directly value get upadted &lt;br /&gt; how it can be happen? yes its possble with the AJAX / Jquery because it use  &lt;b&gt;XMLHttpRequest Object &lt;/b&gt;&lt;br /&gt;&lt;br /&gt; here is my Example on how you can achive this using Jquery&lt;br /&gt;&lt;br /&gt; &lt;b&gt;Steps &lt;/b&gt;&lt;br /&gt;&lt;br /&gt; 1. Add the Jquery liblary in &amp;lthead&amp;gt; Section&lt;br /&gt;    you can download jquery library &lt;a href="http://jqueryjs.googlecode.com/files/jquery-1.2.3.js" target="_blank"&gt;from here &lt;/a&gt;&lt;br /&gt;&lt;br /&gt; 2. now supoose if we change the price from dropdown the Event should occur .&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&amp;lt;select name="Price" id="Price" onchange="update()"&amp;gt;&lt;br /&gt;&amp;lt;option value="100"&amp;gt;100&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="200"&amp;gt;200&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="300"&amp;gt;300&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="400"&amp;gt;400&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;/select&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt; &lt;br /&gt;3. Now create a function update()&lt;br /&gt; &lt;code&gt;&lt;br /&gt;function update()&lt;br /&gt;  { &lt;br /&gt;     txtQty =  document.formname.price.value;&lt;br /&gt;  &lt;br /&gt;      $.ajax({&lt;br /&gt;     type: "GET",&lt;br /&gt;     url: "update.asp",&lt;br /&gt;     data: "Price="+txtprice+"&amp;id="+id,&lt;br /&gt;     success: function(msg){&lt;br /&gt;          $("#ShowPrice").html("&amp;lt;font color="red"&amp;gt;Price updated as&amp;lt;/font&amp;gt;"+(price)+");    &lt;br /&gt;    }    &lt;br /&gt;     }, &lt;br /&gt;     error: function(msg){&lt;br /&gt;     alert( "Error :" + msg);&lt;br /&gt;     }&lt;br /&gt;   });&lt;br /&gt;  }&lt;br /&gt; &amp;lt;/script&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt;4. Now create "update.asp" page in that get the request and update the records and send yes or no message to main page&lt;br /&gt;&lt;br /&gt;5.here is complete example.&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;html&amp;gt;&lt;br /&gt; &amp;lt;head&amp;gt;&lt;br /&gt; &amp;lt;title&amp;gt; Jquery Example &amp;lt;/title&amp;gt;&lt;br /&gt; &amp;lt;script language="javascript" src="js/jquery-1.2.3.js" type="text/javascript" &amp;gt;&amp;lt;/script&amp;gt;&lt;br /&gt;  &amp;lt;script language="javascript" type="text/javascript" &amp;gt;&lt;br /&gt;  function update()&lt;br /&gt;  { &lt;br /&gt;     txtQty =  document.formname.price.value;&lt;br /&gt;  &lt;br /&gt;      $.ajax({&lt;br /&gt;     type: "GET",&lt;br /&gt;     url: "update.asp",&lt;br /&gt;     data: "Price="+txtprice+"&amp;id="+id,&lt;br /&gt;     success: function(msg){&lt;br /&gt;          $("#ShowPrice").html("&amp;lt;font color="red"&amp;gt;Price updated as&amp;lt;/font&amp;gt;"+(price)+");    &lt;br /&gt;    }    &lt;br /&gt;     }, &lt;br /&gt;     error: function(msg){&lt;br /&gt;     alert( "Error :" + msg);&lt;br /&gt;     }&lt;br /&gt;   });&lt;br /&gt;  }&lt;br /&gt; &amp;lt;/script&amp;gt;&lt;br /&gt; &amp;lt;/head&amp;gt;&lt;br /&gt; &amp;lt;body&amp;gt;&lt;br /&gt;&lt;br /&gt; &amp;lt;b&amp;gt;Update Price &amp;lt;/b&amp;gt;&lt;br /&gt; &amp;lt;br&amp;gt; &lt;br /&gt; &amp;lt;form name="formname" &amp;gt;&lt;br /&gt; &amp;lt;select name="Price" id="Price" onchange="update()"&amp;gt;&lt;br /&gt;&amp;lt;option value="100"&amp;gt;100&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="200"&amp;gt;200&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="300"&amp;gt;300&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;option value="400"&amp;gt;400&amp;lt;/option&amp;gt;&lt;br /&gt;&amp;lt;/select&amp;gt;&lt;br /&gt; &amp;lt;br /&amp;gt;&lt;br /&gt; &amp;lt;input type="text" ID="ShowPrice" value=""&amp;gt;&lt;br /&gt; &amp;lt;input type="submit" value="submit"&amp;gt;&lt;br /&gt; &amp;lt;/form&amp;gt;&lt;br /&gt; &amp;lt;/body&amp;gt;&lt;br /&gt; &amp;lt;/html&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2445608145111128357?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2445608145111128357/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/jquery-form-post-request.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2445608145111128357'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2445608145111128357'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/jquery-form-post-request.html' title='Jquery form Post request'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6120275699160851113</id><published>2009-07-27T22:19:00.000+13:00</published><updated>2009-07-27T22:25:26.435+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Localizing SiteMap in Asp.net</title><content type='html'>In Asp.net 2.0 we have a good feature which is &lt;b&gt; Localizing SiteMap &lt;/b&gt;.&lt;br /&gt; the are ways to add the localization to you'r site map when you are using xmlSiteMapProvider &lt;br /&gt; &lt;br /&gt; you can do that via Explicitly and Implicitly also .&lt;br /&gt; &lt;li&gt;using Explicitly&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;asp:textBox id="Exp" Value='&amp;lt%$ Resources: Common, Textgoeshere%&gt;'...&amp;gt; &amp;lt;/asp:TextBox&amp;gt;&lt;br /&gt;&lt;br /&gt; &lt;li&gt;using Implictly &lt;/li&gt;&lt;br /&gt;   &amp;lt;asp:Label ID="Impl" meta:ResourceKey="sometext" ... /&amp;gt;&lt;br /&gt;&lt;br /&gt;You can also use &lt;b&gt; Programmatically &lt;/b&gt; by calling to page.GetLocalResourceObject(...) or Page.GetGlobalResourceObject.&lt;br /&gt;&lt;br /&gt;and this will control all . The menu and Sitemap can be linked to the  SiteMapDataSource. we can also localized sitemapitself like that you can do this&lt;br /&gt;&lt;br /&gt;At first Set the &lt;b&gt;attribute enableLocalization="true" &lt;/b&gt;. Now add thje resourceKey Attribute to all  the SiteMapNode element that you want to Localize.&lt;br /&gt;&lt;br /&gt;&lt;i&gt; Implicit version of Localization &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt; &amp;lt;siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" enableLocalization="true"&amp;gt;&lt;br /&gt;&lt;br /&gt;  &amp;lt;siteMapNode title="Root" description="Description on Link"&amp;gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;siteMapNode url="~/Default.aspx" title="Index" resourceKey="Index" description="Main Page" /&amp;gt;&lt;br /&gt;&lt;br /&gt;    &amp;lt;siteMapNode url="~/Update.aspx" title="Update Resource" resourceKey="Update" description="Update Record" /&amp;gt;&lt;br /&gt;&lt;br /&gt;    ...&lt;br /&gt;&lt;br /&gt;  &amp;lt;/siteMapNode&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;/siteMap&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;You can also add the Explicit Version by adding all the resources like title,Description to the resx file by using &lt;b&gt;ResourceKey Property &lt;/b&gt;&lt;br /&gt;like Index.title and Index.Description.&lt;br /&gt;&lt;br /&gt;now as per the Example of ResourceKey file .&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_ivbMBZX_-HU/Sm1xitsWeuI/AAAAAAAAAEo/VWgW2IV_M14/s1600-h/Web.sitemap.resx.png"&gt;&lt;img style="cursor:pointer; cursor:hand;width: 320px; height: 67px;" src="http://4.bp.blogspot.com/_ivbMBZX_-HU/Sm1xitsWeuI/AAAAAAAAAEo/VWgW2IV_M14/s320/Web.sitemap.resx.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5363067572463237858" /&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;in this file you can get  file name could be a &lt;b&gt;resourceKey + "." + Property of siteMap node. &lt;/b&gt; you can update that part with the following &lt;b&gt;explicit expressions&lt;/b&gt; way &lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt;siteMapNode url="~/Update.aspx" title="$Resources: SiteMapResourceFile, UpdatePosting" ...="" /&amp;gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; in this case Your resource file should be located in App_GlobalResources and that must be call &lt;b&gt;ClassName.culture.resx &lt;/b&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6120275699160851113?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6120275699160851113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/localizing-sitemap-in-aspnet.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6120275699160851113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6120275699160851113'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/localizing-sitemap-in-aspnet.html' title='Localizing SiteMap in Asp.net'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_ivbMBZX_-HU/Sm1xitsWeuI/AAAAAAAAAEo/VWgW2IV_M14/s72-c/Web.sitemap.resx.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8642925437764544780</id><published>2009-07-25T00:52:00.000+13:00</published><updated>2009-07-25T00:53:37.816+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp.net'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>garbage collection in C#</title><content type='html'>Now programmer need not worry about memory management because &lt;b&gt;garbage collection&lt;/b&gt; is one of the Great feature is included in asp.net, java ,j2se and all programming language . which will handle the memory and distroy the objects and all.&lt;br /&gt;&lt;br /&gt;Garbage collector runs when the .Net environment determines that it is required to run. However, you can force the garbage collector to run by calling the GC.Collect() method. there are no guarantees that an unreferenced object will be disposed in the first run of the garbage collector. Objects that do not have a destructor or finalizer get removed in a single pass, whereas objects with destructors need two passes to be disposed. at first it get call the destructor and at the second part it will delete that perticular object. &lt;br /&gt;&lt;br /&gt; The .Net Garbage Collector is optimize for following situation.&lt;br /&gt;1. Objects that have lived the longest are least likely to be become free.&lt;br /&gt;2. Objects allocated together are often used together.&lt;br /&gt;3. Objects that were recently allocated are most likely to be freed.&lt;br /&gt;&lt;br /&gt;for Distroying purpose we have &lt;b&gt; Finalizer &lt;/b&gt; Method which works as:&lt;br /&gt;&lt;br /&gt; in C#, the finalizer is a protected method as shown below&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;  protected void Finalize()&lt;br /&gt;  {&lt;br /&gt;    base.Finalize();&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; but Instead of declaring a Finalizer, exposing a Dispose method is considered as good.&lt;br /&gt; &lt;br /&gt; &lt;b&gt; Dispose&lt;/b&gt;&lt;br /&gt;&lt;br /&gt; by calling GC.SuppressFinalize() we can dispose memory like&lt;br /&gt; &lt;code&gt;&lt;br /&gt;  public void Dispose()  &lt;br /&gt;  {&lt;br /&gt;     GC.SuppressFinalize(this);&lt;br /&gt;  }&lt;br /&gt; &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt; but in The Microsoft.NET CLR (Common Language Runtime) requires that all resources be allocated from the managed heap. You never free objects from the managed heap-objects are automatically freed when they are no longer needed by the application.&lt;br /&gt;&lt;br /&gt; Garbage collection in .NET is done using tracing collection and specifically the CLR implements the Mark/Compact collector.&lt;br /&gt;&lt;br /&gt; there are two phases :&lt;br /&gt; &lt;br /&gt; 1)Find memory that can be reclaimed.&lt;br /&gt; 2)Move all the live objects to the bottom of the heap, leaving free space at the top.&lt;br /&gt;&lt;br /&gt; at last we can say GC is necessarily slower than manual memory management.Programs with GC are huge and bloated; GC isn't suitable for small programs or systems.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8642925437764544780?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8642925437764544780/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/garbage-collection-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8642925437764544780'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8642925437764544780'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/garbage-collection-in-c.html' title='garbage collection in C#'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5381677743973783138</id><published>2009-07-24T23:02:00.000+13:00</published><updated>2009-07-24T23:12:08.763+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>File upload using ASP</title><content type='html'>while designing web form (like client Registration) we required some upload kind of&lt;br /&gt; control ,for that here is a best example to do this &lt;br /&gt; &lt;br /&gt; here u can upload (text file , image , pdf , video) and all &lt;br /&gt;  &lt;br /&gt; &lt;b&gt;steps &lt;/b&gt;&lt;br /&gt;&lt;br /&gt; 1. open config.inc file and set the path from where u want to  access file &lt;br /&gt;  &lt;br /&gt;    strFolder = "C:\upload\files" &lt;br /&gt; 2. Specify the file size , 0 will give unlimited file size&lt;br /&gt;   lngFileSize = 10000&lt;br /&gt;&lt;br /&gt; 3.if you want to excluded  the specify the files to be excluded and must be set to blank ("") if none are to be excluded&lt;br /&gt;  strExcludes = ""   &lt;br /&gt;&lt;br /&gt; 4. if you want to include file then specify the file extension to be allowed&lt;br /&gt;   strIncludes = ".gif;.jpg;.mp3"&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; here is the complete source code of file upload&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5381677743973783138?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5381677743973783138/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/file-upload-using-asp.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5381677743973783138'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5381677743973783138'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/file-upload-using-asp.html' title='File upload using ASP'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-8384300837561683179</id><published>2009-07-22T19:06:00.000+13:00</published><updated>2009-07-22T19:10:47.464+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>Iframes and jQuery - Working with an iframe's parent</title><content type='html'>Use iframe and Jquery to open another window in it self .This actually may be more desirable as it is simpler and works in more browsers (Firefox, Internet Explorer, Opera 8.54+ tested)&lt;br /&gt; &lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;$( function() {&lt;br /&gt;   var p = parent;&lt;br /&gt;   $("a").click( function() {&lt;br /&gt;       p.$("#myinput").val("Anchor clicked: " + this.href);&lt;br /&gt;       return false;&lt;br /&gt;   })&lt;br /&gt;}) &lt;br /&gt; &lt;/code&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-8384300837561683179?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/8384300837561683179/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/iframes-and-jquery-working-with-iframes.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8384300837561683179'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/8384300837561683179'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/iframes-and-jquery-working-with-iframes.html' title='Iframes and jQuery - Working with an iframe&apos;s parent'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-6557874151853050891</id><published>2009-07-18T00:41:00.000+13:00</published><updated>2009-07-18T00:43:14.632+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><title type='text'>disable Back button of a browser?</title><content type='html'>Most of time we want to disable the " Browser Back" button due to some security reason or any &lt;br /&gt;&lt;br /&gt;other purpose.&lt;br /&gt;&lt;br /&gt; there are some tech. to do this .&lt;br /&gt; &lt;ul&gt;&lt;br /&gt; &lt;li&gt;You can use the location replace method when changing the location.&lt;/li&gt;&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt;&lt;br /&gt;  &amp;lt;script language="JavaScript"&amp;gt;&lt;br /&gt;  &amp;lt;!--&lt;br /&gt;    if (document.images)&lt;br /&gt;       location.replace('http://www.xyz.com/login.html');&lt;br /&gt;   else&lt;br /&gt;       location.href = 'login.html';&lt;br /&gt;   //--&amp;gt;&lt;br /&gt;  &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt; &lt;/code&gt;&lt;br /&gt; In this case "replaces the current history location with the new location."&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; &lt;li&gt;You can load the new location into another window, and then close the old window:&lt;/li&gt;&lt;br /&gt;  &lt;code&gt;&lt;br /&gt;  &amp;lt;script langauge="JavaScript"&amp;gt;&lt;br /&gt;   &amp;lt;!--&lt;br /&gt;   function newWindow(Nameoffile,windowName) &lt;br /&gt;   { &lt;br /&gt;      msgWindow=window.open(fileName,windowName); &lt;br /&gt;   }&lt;br /&gt;   //--&amp;gt;&lt;br /&gt; &amp;lt;/script&amp;gt;&lt;br /&gt; &amp;lt;a href="javascript:newWindow('welcome.html','window1')"&amp;gt;Open Window&amp;lt;/a&amp;gt;&lt;br /&gt;  &lt;/code&gt;&lt;br /&gt;&lt;br /&gt; &lt;li&gt;open in the next window: &lt;/li&gt;&lt;br /&gt;&lt;br /&gt;  &lt;code&gt;&lt;br /&gt;   &amp;lt;a href="login.aspx" target="_blank"&amp;gt;New User Login &amp;lt;/a&amp;gt;&lt;br /&gt;  &lt;/code&gt;&lt;br /&gt;  So it will open login page in new window &lt;br /&gt;&lt;br /&gt; &lt;li&gt;You can open a window without a toolbar and Disable backButton from Keyboard and &lt;br /&gt;&lt;br /&gt;Rightclick &lt;/li&gt;&lt;br /&gt;&lt;br /&gt; &lt;code&gt;&lt;br /&gt; &amp;lt;script language="JavaScript"&amp;gt;&lt;br /&gt; &amp;lt;!--&lt;br /&gt;   msgWindow=window.open('Login.aspx','windowName','toolbar=no');&lt;br /&gt; //--&amp;gt;&lt;br /&gt;       &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt; &lt;br /&gt;&lt;li&gt;You can add code to the previous page to force the browser to go forwards again: &lt;/li&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;script language="JavaScript"&amp;gt;&lt;br /&gt; &amp;lt;!--&lt;br /&gt;  javascript:window.history.forward(1);&lt;br /&gt;//--&amp;gt;&lt;br /&gt;  &amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;  &lt;/ul&gt;&lt;br /&gt;&lt;br /&gt;There is no direct way to catch the back button event, so you have to play with javascipt to do so.&lt;br /&gt;&lt;br /&gt;happy coding ........&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-6557874151853050891?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/6557874151853050891/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/disable-back-button-of-browser.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6557874151853050891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/6557874151853050891'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/disable-back-button-of-browser.html' title='disable Back button of a browser?'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1762705981622395369</id><published>2009-07-17T22:27:00.000+13:00</published><updated>2009-07-17T23:15:10.368+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Welcome to Google App Engine for Java!</title><content type='html'>Google announced the new features for Google App Engine (GAE), but the most important one is the support for Java. Java Developers can use GAE for their applications with small changes. (may be big changes due to datastore restrictions.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;10.000 developers can have an early access to GAE for Java through this link : http://appengine.google.com/promo/java_runtime&lt;br /&gt;&lt;br /&gt;There are also additional feautures as :&lt;br /&gt;&lt;br /&gt;    * App Engine’s early look at Java™ language support includes a Java runtime, integration with the new Google Web Toolkit 1.6, and a Google Plugin for Eclipse&lt;br /&gt;    * The Google Secure Data Connector enables centrally-managed access to on-premise data from Google Apps&lt;br /&gt;    * The database import tool makes it easier to move gigabytes of data into App Engine (and export functionality is coming within the month)&lt;br /&gt;    * Cron support can execute scheduled tasks like report generation and DB clean-up at regular interval.&lt;br /&gt;&lt;br /&gt;This new announcement may lead to change in GIS area, like implementing the GeoServer for GAE or other 3th party GIS tools for GAE&lt;div class="content"&gt;&lt;br /&gt;   &lt;p&gt;Google announced the &lt;a href="http://googleblog.blogspot.com/2009/04/new-features-and-early-look-at-java-for.html" target="_blank"&gt;new features for Google App Engine (GAE)&lt;/a&gt;, but the most important one is the support for Java. Java Developers can use GAE for their applications with small changes. (may be big changes due to datastore restrictions &lt;img src="http://www.geowebdeveloper.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley"&gt; )&lt;/p&gt;&lt;br /&gt;&lt;p&gt;10.000 developers can have an early access to GAE for Java through this link : &lt;br /&gt;&lt;a href="%20%20%20%20*%20App%20Engine%27s%20early%20look%20at%20Java%E2%84%A2%20language%20support%20includes%20a%20Java%20runtime,%20integration%20with%20the%20new%20Google%20Web%20Toolkit%201.6,%20and%20a%20Google%20Plugin%20for%20Eclipse%20%20%20%20%20*%20The%20Google%20Secure%20Data%20Connector%20enables%20centrally-managed%20access%20to%20on-premise%20data%20from%20Google%20Apps%20%20%20%20%20*%20The%20database%20import%20tool%20makes%20it%20easier%20to%20move%20gigabytes%20of%20data%20into%20App%20Engine%20%28and%20export%20functionality%20is%20coming%20within%20the%20month%29%20%20%20%20%20*%20Cron%20support%20can%20execute%20scheduled%20tasks%20like%20report%20generation%20and%20DB%20clean-up%20at%20regular%20intervals" target="_blank"&gt;http://appengine.google.com/promo/java_runtime&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;There are also additional feautures as :&lt;/p&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;App Engine’s &lt;a href="http://code.google.com/appengine/docs/java/gettingstarted/"&gt;early look at Java™ language support&lt;/a&gt; includes a Java runtime, integration with the new &lt;a href="http://code.google.com/webtoolkit"&gt;Google Web Toolkit 1.6&lt;/a&gt;, and a &lt;a href="http://code.google.com/eclipse/"&gt;Google Plugin for Eclipse&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;li&gt;The &lt;a href="http://code.google.com/securedataconnector/"&gt;Google Secure Data Connector&lt;/a&gt; enables centrally-managed access to on-premise data from Google Apps&lt;/li&gt;&lt;br /&gt;&lt;li&gt;The &lt;a href="http://code.google.com/appengine/docs/python/tools/uploadingdata.html"&gt;database import tool&lt;/a&gt; makes it easier to move gigabytes of data into App Engine (and export functionality is coming within the month)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://code.google.com/appengine/docs/python/config/cron.html"&gt;Cron support&lt;/a&gt; can execute scheduled tasks like report generation and DB clean-up at regular interval.&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;p&gt;This new announcement may lead to change in GIS area, like implementing the &lt;a href="http://geoserver.org/display/GEOS/Welcome" target="_blank"&gt;GeoServer&lt;/a&gt; for GAE or other 3th party GIS tools for GAE&lt;/p&gt;&lt;br /&gt;   &lt;p class="under"&gt;&lt;br /&gt;    &lt;span class="categories"&gt;&lt;a href="http://www.geowebdeveloper.com/category/google-app-engine/" title="View all posts in google app engine" rel="category tag"&gt;google app engine&lt;/a&gt;&lt;/span&gt;    &lt;span class="tags"&gt;&lt;a href="http://www.geowebdeveloper.com/tag/google-app-engine/" rel="tag"&gt;google app engine&lt;/a&gt;, &lt;a href="http://www.geowebdeveloper.com/tag/java/" rel="tag"&gt;Java&lt;/a&gt;&lt;/span&gt;   &lt;/p&gt;&lt;br /&gt;   &lt;div class="fixed"&gt;&lt;/div&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/6848214385407010493-1762705981622395369?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1762705981622395369/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/welcome-to-google-app-engine-for-java.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1762705981622395369'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1762705981622395369'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/welcome-to-google-app-engine-for-java.html' title='Welcome to Google App Engine for Java!'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2705469928991341422</id><published>2009-07-16T20:12:00.001+13:00</published><updated>2009-07-16T20:12:51.960+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Html'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>CSS New look at CSS3</title><content type='html'>CSS3 is the new kid in the stylesheet family. It offers exciting new possibilities to create an impact with your designs, allows you to use more diverse style sheets for a variety of occasions and lots more. We created this site because we want to share our experiences of CSS3 with you...&lt;br /&gt;&lt;br /&gt;Watch out Preview &lt;a href="http://www.css3.info/preview/" target="_blank"&gt; Preview &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Check Is your browser compatible? &lt;a href="http://www.css3.info/selectors-test/test.html" target="_blank"&gt; Test Drive &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Module status at &lt;a href="http://www.css3.info/modules/" target="_blank"&gt;Status&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-2705469928991341422?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2705469928991341422/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/css-new-look-at-css3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2705469928991341422'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2705469928991341422'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/css-new-look-at-css3.html' title='CSS New look at CSS3'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-4164852812646728508</id><published>2009-07-07T18:33:00.000+13:00</published><updated>2009-07-07T18:34:32.849+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>import Mail address book using C#</title><content type='html'>import Mail address book like gmail,yahoo using C# &lt;br /&gt;&lt;p&gt;Check the .NET Address Book API's of those providers:&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://code.google.com/apis/contacts/code.html" rel="nofollow"&gt;Google Contacts Data API&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://code.google.com/apis/contacts/docs/2.0/developers%5Fguide%5Fdotnet.html#Retrieving" rel="nofollow"&gt;Retrieving contacts&lt;/a&gt; (C#)&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;/ul&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://dev.live.com/contacts/" rel="nofollow"&gt;Windows Live Contacts API&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/bb463974.aspx" rel="nofollow"&gt;Code samples&lt;/a&gt; (C#)&lt;/li&gt;&lt;br /&gt;&lt;/ul&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://developer.yahoo.com/addressbook/" rel="nofollow"&gt;Yahoo! Address Book API&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://developer.yahoo.com/dotnet/howto-rest%5Fcs.html" rel="nofollow"&gt;Yahoo! Web Service REST Calls&lt;/a&gt; (C#)&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://developer.yahoo.com/social/rest%5Fapi%5Fguide/contacts-resource.html" rel="nofollow"&gt;Contacts API URI&lt;/a&gt;&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;&lt;/ul&gt;&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/6848214385407010493-4164852812646728508?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/4164852812646728508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/import-mail-address-book-using-c.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4164852812646728508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/4164852812646728508'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/import-mail-address-book-using-c.html' title='import Mail address book using C#'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-9131036238093070075</id><published>2009-07-06T22:58:00.001+13:00</published><updated>2009-11-26T23:13:57.110+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Silverlight Examples'/><title type='text'>example of Microsoft Silverlight Technology</title><content type='html'>first time in India when people can watch Indian union budget online.&lt;br /&gt;conomic Times of India is going to use&lt;br /&gt;&lt;b&gt;Microsoft Silverlight Technology&lt;/b&gt; to stream live Indian union Budget.&lt;br /&gt;&lt;br /&gt;&lt;a rel="nofollow" href="http://readerszone.com/featured/watch-indian-union-budget-online.html"&gt;Watch Live &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here you can see best example of Microsoft Silverlight Technology.&lt;br /&gt;you can also get more on&lt;br /&gt;&lt;a rel="nofollow" href="http://silverlight.net/"&gt;how to work on SilverLight and how it get implement .&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-9131036238093070075?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/9131036238093070075/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/example-of-microsoft-silverlight.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9131036238093070075'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/9131036238093070075'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/07/example-of-microsoft-silverlight.html' title='example of Microsoft Silverlight Technology'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-2881360535839473105</id><published>2009-06-30T22:22:00.001+13:00</published><updated>2009-09-29T18:09:05.672+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Jquery'/><title type='text'>jQuery.Collection</title><content type='html'>This plugin generates generic collection classes, that work almost exactly as jQuery does. &lt;br /&gt;The supported functions are: &lt;br /&gt;&lt;code&gt;&lt;br /&gt;add, andSelf, attr, each, end, eq, extend, filter,&lt;br /&gt;  get, implement, include, index, init, is, map, not,&lt;br /&gt;  pushStack, setArray, size and slice.&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;$.collection is a collection class by itself. So other collections will inherit from it, or its subclasses. The filter() function accepts:&lt;br /&gt;    * A function that returns true/false.&lt;br /&gt;    * Anything else will be taken literally and compared. Only those items included pass the filter. The filter can be an array of items.&lt;br /&gt;The function .not() works the same way, but matches the opposite.&lt;br /&gt;&lt;br /&gt;u can Downloads collection from here:&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://flesler-plugins.googlecode.com/files/jquery.collection-1.0.3.zip" rel="nofollow"&gt;jQuery.Collection 1.0.3 Zip&lt;/a&gt;&lt;span class="dw-tip"&gt;(all files and docs)&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://flesler-plugins.googlecode.com/files/jquery.collection-1.0.3.js" rel="nofollow"&gt;jQuery.Collection 1.0.3 Source&lt;/a&gt;&lt;span class="dw-tip"&gt;(to learn or test)&lt;/span&gt;&lt;/li&gt;&lt;br /&gt;&lt;li&gt;&lt;a href="http://flesler-plugins.googlecode.com/files/jquery.collection-1.0.3-min.js" rel="nofollow"&gt;jQuery.Collection 1.0.3 Minified&lt;/a&gt;&lt;span class="dw-tip"&gt;(recommended)&lt;/span&gt;&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/6848214385407010493-2881360535839473105?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/2881360535839473105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/jquerycollection.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2881360535839473105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/2881360535839473105'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/jquerycollection.html' title='jQuery.Collection'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-345823270244953057</id><published>2009-06-30T01:44:00.000+13:00</published><updated>2009-06-30T01:50:33.325+13:00</updated><title type='text'>create new utilities and controls with Yahoo User Interface (YUI) Library</title><content type='html'>Hi,&lt;br /&gt;  here is the nice collection of Yahoo User Interface Library.&lt;br /&gt;&lt;br /&gt;  you can Download YUI 3 (Latest version ) from here  &lt;br /&gt;  &lt;br /&gt;  &lt;a href="http://yuilibrary.com/downloads/#yui3"&gt; YUI 3.0 &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;  its really nice collection , There are several utilities are there hope it will helps you,&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-345823270244953057?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/345823270244953057/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/create-new-utilities-and-controls-with.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/345823270244953057'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/345823270244953057'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/create-new-utilities-and-controls-with.html' title='create new utilities and controls with Yahoo User Interface (YUI) Library'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-5291638492121643368</id><published>2009-06-25T20:19:00.001+13:00</published><updated>2009-09-29T18:08:29.761+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Templates'/><title type='text'>free xhtmlcss templates</title><content type='html'>Here are some nice 38 Free website templates collection &lt;br /&gt; &lt;br /&gt; 1. &lt;a href="http://www.hongkiat.com/blog/38-free-elegant-xhtmlcss-website-templates/" rel="nofollow"&gt;Xhtml - Css Templates&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;  &lt;br /&gt; will keep on adding ..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-5291638492121643368?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/5291638492121643368/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/free-xhtmlcss-templates.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5291638492121643368'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/5291638492121643368'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/free-xhtmlcss-templates.html' title='free xhtmlcss templates'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-25638832604089100</id><published>2009-06-25T19:49:00.000+13:00</published><updated>2009-07-07T18:36:12.188+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Javascript'/><category scheme='http://www.blogger.com/atom/ns#' term='google'/><title type='text'>Google hosting Javascript Libraries</title><content type='html'>Google now offers a service for hosting popular JavaScript libraries, so now it will become very easy to do&lt;br /&gt;So far it hosts jQuery, prototype, script, mootools and Dojo and other...&lt;br /&gt;&lt;br /&gt;ou can either load it via the Google AJAX API or the script tag.&lt;br /&gt;The advantage of using the Google API is that it can be used for Google's services as well&lt;br /&gt;(like Maps, RSS/Atom Feeds and Search )&lt;br /&gt;&lt;br /&gt;here are the links &lt;br /&gt;&lt;br /&gt;&lt;a href="http://code.google.com/apis/ajax/"&gt;Google AJAX API&lt;/a&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://code.google.com/apis/ajaxlibs/"&gt;Google AJAX Libraries API&lt;/a&gt;&lt;br /&gt;&lt;br&gt;&lt;br /&gt;&lt;a href="http://ajaxian.com/archives/announcing-ajax-libraries-api-speed-up-your-ajax-apps-with-googles-infrastructure"&gt;Ajaxian &lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-25638832604089100?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/25638832604089100/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/google-hosting-javascript-libraries.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/25638832604089100'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/25638832604089100'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/google-hosting-javascript-libraries.html' title='Google hosting Javascript Libraries'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-6848214385407010493.post-1483670410067888767</id><published>2009-06-19T22:13:00.000+13:00</published><updated>2009-07-07T18:37:10.373+13:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><title type='text'>Clear Project History from Start page on VS</title><content type='html'>hi guys, this is my first trick on my Tips &amp;amp; tricks Category, &lt;br /&gt;&lt;br /&gt;hope u like it, &lt;br /&gt;&lt;br /&gt;Most of the time we want to "Clear Project List" from Start Page of visual studio.&lt;br /&gt;&lt;br /&gt;Here is the steps.&lt;br /&gt;  &lt;br /&gt;  1) Click on Run , Type  RegEdit &amp;amp; press enter &lt;br /&gt;  &lt;br /&gt;  2) It will open Registry Editor,  then navigate to   HKEY_CURRENT_USER\Software\Microsoft\VisualStudio  \\ProjectMRUList &lt;br /&gt;   then delete unnecessary list.&lt;br /&gt;&lt;br /&gt;  3) do same task for "FileMRuList." &lt;br /&gt;&lt;br /&gt;  4) plz make sure not disturb other key from the registry.&lt;br /&gt;&lt;br /&gt; That's It,&lt;br /&gt; :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/6848214385407010493-1483670410067888767?l=webdevlopementhelp.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://webdevlopementhelp.blogspot.com/feeds/1483670410067888767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/clear-project-history-from-start-page.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1483670410067888767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/6848214385407010493/posts/default/1483670410067888767'/><link rel='alternate' type='text/html' href='http://webdevlopementhelp.blogspot.com/2009/06/clear-project-history-from-start-page.html' title='Clear Project History from Start page on VS'/><author><name>kiran</name><uri>http://www.blogger.com/profile/07095652523209578945</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://2.bp.blogspot.com/_ivbMBZX_-HU/SyDFWpJt83I/AAAAAAAAAP4/4AJRb_DrUVU/S220/8617368.jpg'/></author><thr:total>0</thr:total></entry></feed>
