<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Vishal Astik</title>
	<atom:link href="http://vishalsays.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vishalsays.wordpress.com</link>
	<description>"KNOWLEDGE IS A WEALTH WHICH MULTIPLIES WHEN YOU SHARE IT"</description>
	<lastBuildDate>Wed, 02 Nov 2011 14:27:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vishalsays.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Vishal Astik</title>
		<link>http://vishalsays.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vishalsays.wordpress.com/osd.xml" title="Vishal Astik" />
	<atom:link rel='hub' href='http://vishalsays.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Convert DataTable to Array</title>
		<link>http://vishalsays.wordpress.com/2011/07/18/convert-datatable-to-array/</link>
		<comments>http://vishalsays.wordpress.com/2011/07/18/convert-datatable-to-array/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 21:31:28 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/?p=25</guid>
		<description><![CDATA[Recently, I had an requirement to save DataTable to multi-dimension string array.I googled but could not find everything in one place, so this post is the result of it. Here is some data we will use for this example ID Name 1 aaa 2 bbb 3 ccc 4 ddd 5 eee Below is the function [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=25&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Recently, I had an requirement to save DataTable to multi-dimension string array.I googled but could not find everything in one place, so this post is the result of it.</p>
<p>Here is some data we will use for this example</p>
<table width="”390″" border="”1″" cellspacing="”0″" cellpadding="”0″">
<tbody>
<tr>
<td style="font-weight:bold;">ID</td>
<td style="font-weight:bold;">Name</td>
</tr>
<tr>
<td>1</td>
<td>aaa</td>
</tr>
<tr>
<td>2</td>
<td>bbb</td>
</tr>
<tr>
<td>3</td>
<td>ccc</td>
</tr>
<tr>
<td>4</td>
<td>ddd</td>
</tr>
<tr>
<td>5</td>
<td>eee</td>
</tr>
</tbody>
</table>
<p>Below is the function we will use to convert <strong>DataTable to string[,] array</strong></p>
<div style="font-family:Consolas;font-size:10pt;color:black;background:white;">
<p style="margin:0;"> <span style="color:blue;">public</span> <span style="color:blue;">string</span>[,] ConvertDataTableToArray(<span style="color:#2b91af;">DataTable</span> dt)</p>
<p style="margin:0;">        {</p>
<p style="margin:0;">            <span style="color:green;">//Declare 2D-String array</span></p>
<p style="margin:0;">            <span style="color:blue;">string</span>[,] arrString =</p>
<p style="margin:0;">                <span style="color:blue;">new</span> <span style="color:blue;">string</span>[dt.Rows.Count + 1, dt.Columns.Count];</p>
<p style="margin:0;">            <span style="color:blue;">int</span> index = 0;</p>
<p style="margin:0;">            <span style="color:green;">//Save ColumnName in 1st row of the array</span></p>
<p style="margin:0;">            <span style="color:blue;">foreach</span> (<span style="color:#2b91af;">DataColumn</span> dc <span style="color:blue;">in</span> dt.Columns)</p>
<p style="margin:0;">            {</p>
<p style="margin:0;">                arrString[0, index] =</p>
<p style="margin:0;">                    <span style="color:#2b91af;">Convert</span>.ToString(dc.ColumnName);</p>
<p style="margin:0;">                index++;</p>
<p style="margin:0;">            }</p>
<p style="margin:0;">            <span style="color:green;">//Reset Index</span></p>
<p style="margin:0;">            index = 0;</p>
<p style="margin:0;">            <span style="color:green;">//Now save DataTable values in array, </span></p>
<p style="margin:0;">            <span style="color:green;">//here we start from second row as ColumnNames are stored in first row</span></p>
<p style="margin:0;">            <span style="color:blue;">for</span> (<span style="color:blue;">int</span> row = 1; row &lt; dt.Rows.Count + 1; row++)</p>
<p style="margin:0;">            {</p>
<p style="margin:0;">                <span style="color:blue;">for</span> (<span style="color:blue;">int</span> col = 0; col &lt; dt.Columns.Count; col++)</p>
<p style="margin:0;">                {</p>
<p style="margin:0;">                    arrString[row, col] =</p>
<p style="margin:0;">                        <span style="color:#2b91af;">Convert</span>.ToString(dt.Rows[row - 1][col]);</p>
<p style="margin:0;">                }</p>
<p style="margin:0;">            }</p>
<p style="margin:0;">            <span style="color:green;">//Return 2D-String Array</span></p>
<p style="margin:0;">            <span style="color:blue;">return</span> arrString;</p>
<p style="margin:0;">        }</p>
<p style="margin:0;">
</div>
<p>So now we have 2D-String Array converted from DataTable, but how to read values from this array, I leave it on readers to find out.</p>
<p style="margin:0;"><strong>Hint:</strong></p>
<p style="margin:0;">To find total row and total columns in Multidimension Array we have to use <strong>.GetLength()</strong> method</p>
<p>NJoy!!!</p>
<p>Comments good as well as bad are most welcome.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=25&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2011/07/18/convert-datatable-to-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Setting Value in Textbox with TextMode=&#8221;Password&#8221;</title>
		<link>http://vishalsays.wordpress.com/2009/02/22/setting-value-in-textbox-with-textmodepassword/</link>
		<comments>http://vishalsays.wordpress.com/2009/02/22/setting-value-in-textbox-with-textmodepassword/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 21:48:15 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET Tips & Tricks]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/?p=12</guid>
		<description><![CDATA[Recently, I had a requirement, that when user details are edited the admin should be able to edit the password. First I should to display clear password (ofcourse it is worng) as that page was visible to admin only. Then I had to change that and had to display asterik (&#8216;*&#8217;) instead of clear password. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=12&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Recently,</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I had a requirement, that when user details are edited the admin should be able to edit the password.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">First I should to display clear password (ofcourse it is worng) as that page was visible to admin only.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Then I had to change that and had to display asterik (&#8216;*&#8217;) instead of clear password.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">So Obvisiouly I did something like</span></p>
<p><!-- {\rtf1\ansi\ansicpg\lang1024\noproof65001\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier New;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red0\green0\blue0;}??\fs20 \cf1 this\cf0 .txtPassword.Text = (\cf1 string\cf0 )dr[0];} --></p>
<div style="background:white none repeat scroll 0 0;font-family:Courier New;font-size:10pt;color:black;">
<p><span style="color:#2b91af;">18</span> <span style="color:blue;">this</span>.txtPassword.Text = (<span style="color:blue;">string</span>)dr[0];</div>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">But this did not work for me</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">So I googled and found this article</span></p>
<p style="margin:0;"><a class="wp-caption" href="http://dotnetslackers.com/ASP_NET/re-16487_Setting_the_value_of_Password_Fields_in_ASP_NET_2_0_a_tip_and_rant_rolled_up_into_1.aspx" target="_blank">Setting Value of Password Field</a></p>
<p style="margin:0;">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">so I just changed the above code to</span></p>
<p style="margin:0;"><!-- {\rtf1\ansi\ansicpg\lang1024\noproof65001\uc1 \deff0{\fonttbl{\f0\fnil\fcharset0\fprq1 Courier New;}}{\colortbl;??\red0\green0\blue255;\red255\green255\blue255;\red0\green0\blue0;\red163\green21\blue21;}??\fs20 \cf1 this\cf0 .txtPassword.Attributes.Add(\cf4 "value"\cf0 ,(\cf1 string\cf0 )dr[0]);} --></p>
<div style="background:white none repeat scroll 0 0;font-family:Courier New;font-size:10pt;color:black;">
<p style="margin:0;"><span style="color:#2b91af;">18</span> <span style="color:blue;">this</span>.txtPassword.Attributes.Add(<span style="color:#a31515;">&#8220;value&#8221;</span>,(<span style="color:blue;">string</span>)dr[0]);</p>
</div>
<p style="margin:0;">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">and it worked liked a charm.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Note: Please <a href="http://dotnetslackers.com/ASP_NET/re-16487_Setting_the_value_of_Password_Fields_in_ASP_NET_2_0_a_tip_and_rant_rolled_up_into_1.aspx" target="_blank"><strong>do read</strong> <strong>this article</strong></a>, if you want to preserve the value for password field even when postback occurs.</span></p>
<p style="margin:0;">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">That’s all folks.<br />
Hope you enjoyed this post.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Comments Good as well as Bad are most welcome.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;font-weight:bold;">NJoy !!! <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>
<p style="margin:0;">
<p style="margin:0;">
<p style="margin:0;">
<br /> Tagged: ASP.NET, ASP.NET Tips &amp; Tricks <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=12&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2009/02/22/setting-value-in-textbox-with-textmodepassword/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Finding Elements Top and Left Using JavaScript</title>
		<link>http://vishalsays.wordpress.com/2007/12/21/finding-elements-top-and-left-using-javascript/</link>
		<comments>http://vishalsays.wordpress.com/2007/12/21/finding-elements-top-and-left-using-javascript/#comments</comments>
		<pubDate>Fri, 21 Dec 2007 16:47:15 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Javascript in ASP.NET]]></category>
		<category><![CDATA[Top and Left of Element using Javascript]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/2007/12/21/finding-elements-top-and-left-using-javascript/</guid>
		<description><![CDATA[Recently, I was trying to create orkut like interface, where user can click on image and upload files using IFrame, so it gave ajax like user experience. For this I used javascript to find top, left, height and width of image so I could display iframe from center of image. My javascript function was something [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=11&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Recently, </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I was trying to create orkut like interface, where user can click on image and upload files using IFrame, so it gave ajax like user experience.</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">For this I used javascript to find top, left, height and width of image so I could display iframe from center of image.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">My javascript function was something like this</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">function ShowUploadFrame(myImage)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">{</span></p>
<p class="MsoNormal" style="margin-left:10px;"><span style="font-size:10pt;font-family:'Courier New';color:blue;"> var</span><span style="font-size:10pt;font-family:'Courier New';"> frm = document.getElementById(<span style="color:maroon;">&#8216;ImageFrame&#8217;</span>);<br />
frm.src = <span style="color:maroon;">&#8220;FileUpload.aspx&#8221;</span>;</span></p>
<p class="MsoNormal" style="margin-left:10px;"><span style="font-size:10pt;font-family:'Courier New';"> frm.style.display= <span style="color:maroon;">&#8220;block&#8221;</span>;<br />
</span></p>
<div><span style="font-size:10pt;font-family:'Courier New';"><span> </span> frm.style.top = parseInt(myImage.offsetTop) +<br />
</span></div>
<div><span style="font-size:10pt;font-family:'Courier New';"> (parseInt(myImage.style.height)/2) + <span style="color:maroon;">&#8216;px&#8217;</span>;</span></div>
<p class="MsoNormal" style="margin-left:1in;"><span style="font-size:10pt;font-family:'Courier New';"> </span></p>
<p class="MsoNormal" style="text-indent:10px;"><span style="font-size:10pt;font-family:'Courier New';"><span> </span>frm.style.left = parseInt(myImage.offsetLeft) +<br />
(parseInt(myImage.style.width)/2) + <span style="color:maroon;">&#8216;px&#8217;</span>;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';">}</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I always use Mozilla Firefox(FF), so when I tested my code it worked perfectly.But, when I tested this code in Internet Explorer 6(IE6) the offsetTop did not work correctly.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I used Google my best friend to find the answer, and here is what I found</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">&#8220;When your element is nested inside other elements or when it has elements above it with position relative or absolute, element.offsetTop does not work properly in IE6.&#8221;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> So, I found this code from different blogs on net</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Now, my javascript function is as below</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">function ShowUploadFrame(myImage)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">{</span></p>
<p><span style="font-size:10pt;font-family:'Courier New';color:blue;"> var</span><span style="font-size:10pt;font-family:'Courier New';"> frm = document.getElementById(<span style="color:maroon;">&#8216;ImageFrame&#8217;</span>);<br />
<span> </span> frm.src = <span style="color:maroon;">&#8220;FileUpload.aspx&#8221;</span>;<br />
<span> </span> frm.style.display= <span style="color:maroon;">&#8220;block&#8221;</span>; </span></p>
<p class="MsoNormal" style="text-indent:10px;"><span style="font-size:10pt;font-family:'Courier New';color:blue;"> var</span><span style="font-size:10pt;font-family:'Courier New';"> dim = GetTopLeft(myImage);</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"> <span> </span> frm.style.top = (parseInt(dim.Top) +<br />
<span> </span> (parseInt(</span><span style="font-size:10pt;font-family:Verdana;">myImage</span><span style="font-size:10pt;font-family:'Courier New';">.style.height)/2)) + <span style="color:maroon;">&#8216;px&#8217;</span>;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"> frm.style.left = parseInt(dim.Left) +</span><br />
<span style="font-size:10pt;font-family:'Courier New';"><span> </span>(parseInt(</span><span style="font-size:10pt;font-family:Verdana;">myImage</span><span style="font-size:10pt;font-family:'Courier New';">.style.width)/2) + <span style="color:maroon;">&#8216;px&#8217;</span>;</span><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">}</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">But the important function GetTopLeft(elm) is what you should have a look at, if you want to find Top and Left of element using Javascript.</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">function GetTopLeft(elm)</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">{</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"><span> </span></span><span style="font-size:10pt;font-family:'Courier New';color:blue;"> var</span><span style="font-size:10pt;font-family:'Courier New';"> x, y = 0;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span><span style="color:#008000;"> //set x to elm’s offsetLeft</span><br />
</span> x = elm.offsetLeft;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span><span style="color:#008000;"> //set y to elm’s offsetTop</span></span><br />
y = elm.offsetTop;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span style="color:green;"> //set elm to its offsetParent</span><br />
<span> </span> elm = elm.offsetParent;</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';color:green;"><span> </span><span> //use while loop to check if elm is null<br />
</span> // if not then add current elm’s offsetLeft to x<br />
<span> </span> //offsetTop to y and set elm to its offsetParent</span><span style="font-size:10pt;font-family:'Courier New';"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span style="color:blue;"> while</span>(elm != <span style="color:blue;">null</span>)<br />
<span> </span> {</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span> </span> x = parseInt(x) + parseInt(elm.offsetLeft);<br />
<span> </span> y = parseInt(y) + parseInt(elm.offsetTop);<br />
<span> </span> elm = elm.offsetParent;<br />
<span> </span> }</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';color:green;"> <span> </span><span> //here is interesting thing<br />
</span> //it return Object with two properties<br />
<span> </span> //Top and Left</span><span style="font-size:10pt;font-family:'Courier New';"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:'Courier New';"><span> </span><span style="background:silver none repeat scroll 0 50%;color:blue;">return</span><span style="background:silver none repeat scroll 0 50%;"> {Top:y, Left: x};</span></span><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">}</span></p>
<p class="MsoNormal">
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> Here are two important points I would like to share are</span></p>
<ol>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I used while loop to find if elm has parent, then add      the elements offsetLeft to x and offsetTop to y variable and set elm’s      offsetParent to elm.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">I used </span><span style="background:silver none repeat scroll 0 50%;font-size:10pt;font-family:'Courier New';color:blue;">return</span><span style="background:silver none repeat scroll 0 50%;font-size:10pt;font-family:'Courier New';"> {Top:y, Left: x};</span><span style="font-size:10pt;font-family:'Courier New';"> which returns an Object with two properties Top and      Left whose values are set to y and x respectively.</span><span style="font-size:10pt;font-family:Verdana;"> </span></li>
</ol>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">That’s all folks.<br />
Hope you enjoyed this post.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Comments Good as well as Bad are most welcome.</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalsays.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalsays.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=11&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2007/12/21/finding-elements-top-and-left-using-javascript/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Studio 2008, .NET Framework 3.5 and Visual Web Developer 2008</title>
		<link>http://vishalsays.wordpress.com/2007/11/20/visual-studio-2008/</link>
		<comments>http://vishalsays.wordpress.com/2007/11/20/visual-studio-2008/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 04:49:14 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[ASP.NET 3.5]]></category>
		<category><![CDATA[ASP.NET IDE]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[Visual Web Developer]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/2007/11/20/visual-studio-2008/</guid>
		<description><![CDATA[Microsoft released Visual Studio 2008 officially (i.e. RTM) and Visual Web Developer 2008 For a starter, following is a list of new features included in Visual Studio 2008 as well as Visual Web Developer 2008 Built in AJAX Functionality: Now AJAX is not an external framework but an internal part of ASP.NET 3.5. JavaScript Support: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=9&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3><u>Microsoft released Visual Studio 2008 officially (i.e. RTM) and Visual Web Developer 2008</u></h3>
<p style="font-family:Verdana;">For a starter, following is a list of new features included in Visual Studio 2008 as well as Visual Web Developer 2008</p>
<ol>
<li><u>Built in AJAX Functionality:</u> Now AJAX is not an external framework but an internal part of ASP.NET 3.5.</li>
<li><u> JavaScript Support</u>: These new IDE(s) fully supports JavaScript Debugging and Javascript Intellisense.</li>
<li><u>LINQ</u> (Language Integrated Query): With LINQ Support data access becomes easier.</li>
<li><u>Debugging .NET Framework</u>: As .NET Framework Source Code is freely available (courtesy Microsoft), VS2008 allows you to debug .NET Framework Source Code.</li>
<li><u>Split View</u>: Now with new split view feature, you can work with &#8220;Source View&#8221; as well as &#8220;Design View&#8221; at the same time.</li>
<li><u>Multi-Targeting</u>: With these new IDE(s), you can develop web application for .NET Framework 2.0(Visual Studio 2005) as well as .NET Framework 3.5.</li>
</ol>
<p style="font-family:Verdana;font-size:10pt;">These above feature are only for starter, there are many more new features included in <strong>Visual Studio 2008</strong> as well as <strong>.NET Framework 3.5.</strong></p>
<p style="font-family:Georgia;font-size:12pt;font-weight:bold;"><u>Download</u></p>
<p style="font-family:Verdana;font-size:10pt;"> As Visual Studio 2008 has reached RTM, it will not be available for free download.</p>
<p style="font-family:Verdana;font-size:10pt;"> But you can download <strong><a href="http://www.microsoft.com/express/vwd/">Visual Web Developer 2008</a></strong> (of course it is free&#8230;) from<br />
here <strong><a href="http://www.microsoft.com/express/vwd/">http://www.microsoft.com/express/vwd/</a></strong></p>
<p style="font-family:Verdana;font-size:10pt;">       For getting started with ASP.NET 3.5, here is a useful link<br />
<strong><a href="http://asp.net/downloads/vs2008/">Learn ASP.NET 3.5</a></strong></p>
<p style="font-family:Verdana;font-size:10pt;"> <strong>Hope this helps !!!!</strong></p>
<p style="font-family:Verdana;font-size:10pt;">   If you have any suggestion, question or problem feel free to comment below.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalsays.wordpress.com/9/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalsays.wordpress.com/9/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=9&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2007/11/20/visual-studio-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Tutorial regarding asp.net IDE</title>
		<link>http://vishalsays.wordpress.com/2007/08/02/tutorial-regarding-aspnet-ide/</link>
		<comments>http://vishalsays.wordpress.com/2007/08/02/tutorial-regarding-aspnet-ide/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 16:18:44 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[ASP.NET IDE]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/2007/08/02/tutorial-regarding-aspnet-ide/</guid>
		<description><![CDATA[These are tutorials related to ASP.NET IDE<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=8&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>These are tutorials related to ASP.NET IDE</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalsays.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalsays.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=8&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2007/08/02/tutorial-regarding-aspnet-ide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Second Post</title>
		<link>http://vishalsays.wordpress.com/2007/08/02/second-post/</link>
		<comments>http://vishalsays.wordpress.com/2007/08/02/second-post/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 16:15:50 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[ASP.NET IDE]]></category>

		<guid isPermaLink="false">http://vishalsays.wordpress.com/2007/08/02/second-post/</guid>
		<description><![CDATA[This is my second Post<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=7&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is my second Post</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalsays.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalsays.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=7&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2007/08/02/second-post/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
		<item>
		<title>Introduction</title>
		<link>http://vishalsays.wordpress.com/2007/05/13/hello-world/</link>
		<comments>http://vishalsays.wordpress.com/2007/05/13/hello-world/#comments</comments>
		<pubDate>Sun, 13 May 2007 22:43:12 +0000</pubDate>
		<dc:creator>Vishal Astik</dc:creator>
				<category><![CDATA[Introduction]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This blog is created by me for people like me who have just started learning ASP.NET 2.0 The Coding Practice and Conventions are my own, though I have tried to follow the Coding Practice and Conventions followed by Professional Programmers, from their books and blogs. If you find this blog useful or if you have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=1&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-weight:bold;font-size:16px;font-family:Verdana;">This blog is created by me for people like me who have just started learning ASP.NET 2.0</span></p>
<p><span style="font-weight:normal;font-size:14px;font-family:Verdana;"> The Coding Practice and Conventions are my own, though I have tried to follow the Coding Practice and Conventions followed by Professional Programmers, from their books and blogs.</span></p>
<p><span style="font-weight:normal;font-size:14px;font-family:Verdana;">If you find this blog useful or if you have any comment please write it below</span></p>
<p><span style="font-weight:normal;font-size:14px;font-family:Verdana;">ASP.NET 2.0 Tutorial and Code Snippets coming soon</span></p>
<p>View My Second Post  <a href="http://vishalsays.wordpress.com/2007/08/02/second-post/">Second Post</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/vishalsays.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/vishalsays.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vishalsays.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vishalsays.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vishalsays.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vishalsays.wordpress.com&amp;blog=1099776&amp;post=1&amp;subd=vishalsays&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vishalsays.wordpress.com/2007/05/13/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b7eedc03e14d2665f037ef7daad20621?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vishalsays</media:title>
		</media:content>
	</item>
	</channel>
</rss>
