<?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>Gunjanshah's Blog</title>
	<atom:link href="http://gunjanshah.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gunjanshah.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 27 Dec 2010 06:30:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='gunjanshah.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Gunjanshah's Blog</title>
		<link>http://gunjanshah.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://gunjanshah.wordpress.com/osd.xml" title="Gunjanshah&#039;s Blog" />
	<atom:link rel='hub' href='http://gunjanshah.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Export Data from DataGridView to Excel File??</title>
		<link>http://gunjanshah.wordpress.com/2009/12/19/how-to-export-data-from-datagridview-to-excel-file/</link>
		<comments>http://gunjanshah.wordpress.com/2009/12/19/how-to-export-data-from-datagridview-to-excel-file/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 11:48:42 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=58</guid>
		<description><![CDATA[//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-Add this code in Button&#8217;s Click Event&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- //&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;In this Code, GridViewData is Name of DataGridView&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- //&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;You have to include Referances in your Project : Microsoft Office Library 11.0&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; Excel.ApplicationClass excel = new Excel.ApplicationClass(); excel.Application.Workbooks.Add(true); int ColumnIndex = 0; foreach (DataGridViewColumn column in GridViewData.Columns) { if (column.Visible &#38;&#38; !column.Name.Contains(&#8220;Id&#8221;)) { excel.Cells[1, ColumnIndex + 1] = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=58&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-Add this code in Button&#8217;s Click Event&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;In this Code, <strong>GridViewData </strong>is Name of DataGridView&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>//&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;You have to include Referances in your Project : Microsoft Office Library 11.0&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>Excel.ApplicationClass excel = new Excel.ApplicationClass();<br />
excel.Application.Workbooks.Add(true);</p>
<p>int ColumnIndex = 0;</p>
<p>foreach (DataGridViewColumn column in GridViewData.Columns)<br />
{<br />
if (column.Visible &amp;&amp; !column.Name.Contains(&#8220;Id&#8221;))<br />
{<br />
excel.Cells[1, ColumnIndex + 1] = column.HeaderText;<br />
Excel.Range Colheader = (Excel.Range)excel.get_Range(excel.Cells[1, ColumnIndex + 1], excel.Cells[1, ColumnIndex + 1]);<br />
Colheader.Font.Bold = true;</p>
<p>Colheader.Interior.Color = (192 &lt;&lt; 16) | (192 &lt;&lt; <img src='http://s0.wp.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> | 192;<br />
for (int row = 1; row &lt;= GridViewData.Rows.Count; row++)<br />
{<br />
excel.Cells[row + 1, ColumnIndex + 1] = GridViewData[column.Name.ToString(), row - 1].Value == null ? &#8220;&#8221;  :                                                                                                          GridViewData[column.Name.ToString(), row - 1].Value;<br />
Excel.Range oCol1 = (Excel.Range)excel.get_Range(excel.Cells[row + 1, ColumnIndex + 1], excel.Cells[row + 1,                                                                    ColumnIndex + 1]);<br />
oCol1.Select();<br />
oCol1.Columns.EntireColumn.AutoFit();<br />
oCol1.Borders.Weight = Excel.XlBorderWeight.xlThin;<br />
oCol1.Borders.LineStyle = Excel.XlLineStyle.xlContinuous;<br />
oCol1.Borders.ColorIndex = Excel.XlColorIndex.xlColorIndexAutomatic;<br />
}<br />
ColumnIndex++;<br />
}<br />
}<br />
excel.Visible = true;<br />
Excel.Worksheet worksheet = (Excel.Worksheet)excel.ActiveSheet;<br />
worksheet.Activate();</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=58&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/12/19/how-to-export-data-from-datagridview-to-excel-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>How to use Delay Function in Sql Server 2005</title>
		<link>http://gunjanshah.wordpress.com/2009/11/21/how-to-use-delay-function-in-sql-server-2005/</link>
		<comments>http://gunjanshah.wordpress.com/2009/11/21/how-to-use-delay-function-in-sql-server-2005/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 12:55:58 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=55</guid>
		<description><![CDATA[Wait for Delay in executing T-SQL SELECT GETDATE() CurrentTime WAITFOR DELAY '00:00:05' ---- 5 Second Delay SELECT GETDATE() CurrentTime<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=55&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong> Wait for Delay in executing T-SQL</strong></p>
<p><code>SELECT </code><code>GETDATE</code><code>() </code><code>CurrentTime</code><br />
<code>WAITFOR </code><code>DELAY </code><code>'00:00:05' </code><code>---- 5 Second Delay</code><br />
<code>SELECT </code><code>GETDATE</code><code>() </code><code>CurrentTime</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=55&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/11/21/how-to-use-delay-function-in-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>How to select 2nd Highest Salary of the Employee?</title>
		<link>http://gunjanshah.wordpress.com/2009/11/21/how-to-select-2nd-highest-salary-of-the-employee/</link>
		<comments>http://gunjanshah.wordpress.com/2009/11/21/how-to-select-2nd-highest-salary-of-the-employee/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 12:47:51 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=52</guid>
		<description><![CDATA[Declare @Temp Table ( Id int identity(1,1), Name varchar(100), Salary decimal(18,2) ) &#160; Insert into @Temp Select &#8216;A&#8217;,12000 Union Select &#8216;B&#8217;,14000 Union Select &#8216;C&#8217;,10000 Union Select &#8216;D&#8217;,22000 Union Select &#8216;E&#8217;,25000 &#160; Select * from @Temp &#160; Select top(1) AA.Salary,AA.Name from ( Select top(2) Salary,Name from @Temp order By Salary desc &#160; ) as AA order [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=52&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Declare @Temp Table</p>
<p>(</p>
<p>Id int identity(1,1),</p>
<p>Name varchar(100),</p>
<p>Salary decimal(18,2)</p>
<p>)</p>
<p>&nbsp;</p>
<p>Insert into @Temp</p>
<p>Select &#8216;A&#8217;,12000</p>
<p>Union</p>
<p>Select &#8216;B&#8217;,14000</p>
<p>Union</p>
<p>Select &#8216;C&#8217;,10000</p>
<p>Union</p>
<p>Select &#8216;D&#8217;,22000</p>
<p>Union</p>
<p>Select &#8216;E&#8217;,25000</p>
<p>&nbsp;</p>
<p>Select * from @Temp</p>
<p>&nbsp;</p>
<p>Select top(1) AA.Salary,AA.Name from</p>
<p>(</p>
<p>Select top(2) Salary,Name from @Temp order By Salary desc</p>
<p>&nbsp;</p>
<p>) as AA order By Salary</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=52&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/11/21/how-to-select-2nd-highest-salary-of-the-employee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>How to connect ASP.Net with Oracle Database?</title>
		<link>http://gunjanshah.wordpress.com/2009/11/17/how-to-connect-asp-net-with-oracle-database/</link>
		<comments>http://gunjanshah.wordpress.com/2009/11/17/how-to-connect-asp-net-with-oracle-database/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 09:06:12 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=48</guid>
		<description><![CDATA[// Here  is the Code to establish a connection with Oracle to ASP.Net Using System.Data.OracleClient; OracleConnection conn = new OracleConnection("Data Source = Oracle8i;   Integrated Security = yes; User Id = username; Password = passwd "); Conn.Open; OracleCommand cmd = conn.CreateCommand(); cmd.CommandText = "Name of Stored Procedure"; cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.Add(new OracleParameter("a1", OracleType.Cursor)).Direction = ParameterDirection.Output; cmd.Parameters.Add(new [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=48&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>// Here  is the Code to establish a connection with Oracle to ASP.Net</strong></p>
<p>Using System.Data.OracleClient;</p>
<pre>OracleConnection conn = new OracleConnection("Data Source = Oracle8i;   Integrated Security = yes; User Id = username; Password = passwd ");
Conn.Open;
OracleCommand cmd = conn.CreateCommand();
cmd.CommandText = "Name of Stored Procedure";
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add(new OracleParameter("a1", OracleType.Cursor)).Direction = ParameterDirection.Output;
cmd.Parameters.Add(new OracleParameter("a2", OracleType.Cursor)).Direction = ParameterDirection.Output;
DataSet ds = new DataSet();
OracleDataAdapter adapter = new OracleDataAdapter(cmd);
adapter.Fill(ds);</pre>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=48&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/11/17/how-to-connect-asp-net-with-oracle-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>PopUpBoxes in Javascript like-Alert,Confirm and Prompt</title>
		<link>http://gunjanshah.wordpress.com/2009/11/16/popupboxes-in-javascript-like-alertconfirm-and-prompt/</link>
		<comments>http://gunjanshah.wordpress.com/2009/11/16/popupboxes-in-javascript-like-alertconfirm-and-prompt/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 12:39:41 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[JScript]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=45</guid>
		<description><![CDATA[&#60;html&#62; &#60;head id=&#8221;Head1&#8243; runat=&#8221;server&#8221;&#62; &#60;title&#62;Use of Java Script&#60;/title&#62; &#60;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&#62; function Message_Display() { var Arr = new Array(); var i = 0; Arr[0] = &#8220;Wipro&#8221;; Arr[1] = &#8220;Satyam&#8221;; Arr[2] = &#8220;TCS&#8221;; alert(&#8220;Hello World!!!&#8221;); document.write(&#8220;&#60;h2&#62;List of IT Companies:&#60;/h2&#62;&#8221;); for(i in Arr) { document.write(&#8220;&#60;/br&#62;&#8221;,Arr[i]); } return false; } function Confirmation() { var name=confirm(&#8220;Are u sure u [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=45&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&lt;html&gt;</p>
<p>&lt;head id=&#8221;Head1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;title&gt;Use of Java Script&lt;/title&gt;</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221;&gt;<br />
function Message_Display()<br />
{<br />
var Arr = new Array();<br />
var i = 0;</p>
<p>Arr[0] = &#8220;Wipro&#8221;;<br />
Arr[1] = &#8220;Satyam&#8221;;<br />
Arr[2] = &#8220;TCS&#8221;;</p>
<p>alert(&#8220;Hello World!!!&#8221;);</p>
<p>document.write(&#8220;&lt;h2&gt;List of IT Companies:&lt;/h2&gt;&#8221;);<br />
for(i in Arr)<br />
{<br />
document.write(&#8220;&lt;/br&gt;&#8221;,Arr[i]);<br />
}<br />
return false;<br />
}<br />
function Confirmation()<br />
{<br />
var name=confirm(&#8220;Are u sure u want to Delete this Record!! &#8220;);<br />
if(name == true)<br />
{<br />
alert(&#8220;Record is Sucesfully Deleted&#8221;);<br />
return false;<br />
}<br />
else<br />
{<br />
alert(&#8220;Record is Not Deleted&#8221;);<br />
return false;<br />
}<br />
}<br />
function Prompt()<br />
{<br />
var name = prompt(&#8220;Please Enter ur Name:&#8221;,&#8221;AAA&#8221;);<br />
if(name != null &amp;&amp; name != &#8220;&#8221;)<br />
{<br />
for(i = 0; i &lt; 5 ; i++)<br />
{<br />
document.write(&#8220;Hello Mr. &#8221; + name  + &#8221; How Do u do?&#8221;);<br />
document.write(&#8220;&lt;/br&gt;&#8221;);<br />
}<br />
return false;<br />
}<br />
}<br />
&lt;/script&gt;</p>
<p>&lt;/head&gt;<br />
&lt;body&gt;<br />
&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;asp:Button ID=&#8221;btnClick&#8221; runat=&#8221;server&#8221; Text=&#8221;Alert Me&#8221; OnClientClick=&#8221;return Message_Display();&#8221; /&gt;<br />
&lt;asp:Button ID=&#8221;btnConfirm&#8221; runat=&#8221;server&#8221; Text=&#8221;Confirm Me&#8221; OnClientClick=&#8221;return Confirmation();&#8221; /&gt;<br />
&lt;asp:Button ID=&#8221;btnPrompt&#8221; runat=&#8221;server&#8221; Text=&#8221;Prompt Me&#8221; OnClientClick=&#8221;return Prompt();&#8221; /&gt;<br />
&lt;/form&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=45&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/11/16/popupboxes-in-javascript-like-alertconfirm-and-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting Email Account Setings From Outlook</title>
		<link>http://gunjanshah.wordpress.com/2009/10/24/getting-email-account-setings-from-outlook/</link>
		<comments>http://gunjanshah.wordpress.com/2009/10/24/getting-email-account-setings-from-outlook/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 13:12:36 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=43</guid>
		<description><![CDATA[using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.Win32; using Microsoft.VisualBasic; using System.Net.Mail; namespace ReadingRegistry { class Program { static void Main(string[] args) { RegistryKey pRegKey = Registry.CurrentUser; pRegKey = pRegKey.OpenSubKey(&#8220;Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows Messaging Subsystem\\Profiles\\Outlook\\9375CFF0413111d3B88A00104B2A6676000004&#8243;); ASCIIEncoding enc = new ASCIIEncoding(); byte[] value1 = (byte[])pRegKey.GetValue(&#8220;Account Name&#8221;); byte[] value2 = (byte[])pRegKey.GetValue(&#8220;Display Name&#8221;); byte[] value3 = (byte[])pRegKey.GetValue(&#8220;Email&#8221;); byte[] [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=43&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>using System;</p>
<p>using System.Collections.Generic;</p>
<p>using System.Linq;</p>
<p>using System.Text;</p>
<p>using Microsoft.Win32;</p>
<p>using Microsoft.VisualBasic;</p>
<p>using System.Net.Mail;</p>
<p>namespace ReadingRegistry</p>
<p>{</p>
<p>class Program</p>
<p>{</p>
<p>static void Main(string[] args)</p>
<p>{</p>
<p>RegistryKey pRegKey = Registry.CurrentUser;</p>
<p>pRegKey = pRegKey.OpenSubKey(&#8220;Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows Messaging Subsystem\\Profiles\\Outlook\\9375CFF0413111d3B88A00104B2A6676000004&#8243;);</p>
<p>ASCIIEncoding enc = new ASCIIEncoding();</p>
<p>byte[] value1 = (byte[])pRegKey.GetValue(&#8220;Account Name&#8221;);</p>
<p>byte[] value2 = (byte[])pRegKey.GetValue(&#8220;Display Name&#8221;);</p>
<p>byte[] value3 = (byte[])pRegKey.GetValue(&#8220;Email&#8221;);</p>
<p>byte[] value4 = (byte[])pRegKey.GetValue(&#8220;POP3 Server&#8221;);</p>
<p>byte[] value5 = (byte[])pRegKey.GetValue(&#8220;POP3 User&#8221;);</p>
<p>byte[] value6 = (byte[])pRegKey.GetValue(&#8220;SMTP Server&#8221;);</p>
<p>byte[] value7 = (byte[])pRegKey.GetValue(&#8220;POP3 Password&#8221;);</p>
<p>Console.Write(&#8220;Account Name: &#8221; + &#8221; &#8221; + enc.GetString(value1).ToString() + &#8220;\n&#8221; + &#8220;Display Name: &#8221; + &#8221; &#8221; + enc.GetString(value2).ToString() + &#8220;\n&#8221; + &#8220;Email: &#8221; + &#8221; &#8221; + enc.GetString(value3).ToString() + &#8220;\n&#8221; + &#8220;POP3 Server: &#8221; + &#8221; &#8221; + enc.GetString(value4).ToString() + &#8220;\n&#8221; + &#8220;POP3 User: &#8221; + &#8221; &#8221; + enc.GetString(value5).ToString() + &#8220;\n&#8221; + &#8220;SMTP Server: &#8221; + &#8221; &#8221; + enc.GetString(value6).ToString() + &#8220;\n&#8221; + &#8220;POP3 Password:&#8221; + &#8221; &#8221; + enc.GetString(value7).ToString());</p>
<p>Console.ReadKey();</p>
<p>}</p>
<p>}</p>
<p>}</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=43&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/10/24/getting-email-account-setings-from-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>Most Used Regular Expressions in ASP.NET</title>
		<link>http://gunjanshah.wordpress.com/2009/10/24/most-used-regular-expressions-in-asp-net/</link>
		<comments>http://gunjanshah.wordpress.com/2009/10/24/most-used-regular-expressions-in-asp-net/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 13:09:25 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=41</guid>
		<description><![CDATA[RequiredFieldMessage = &#8220;Enter Requiered Field Value&#8221; NameRegularExpression = &#8220;^[A-Z a-z 0-9]{1,}$&#8221; OnlyCharRegularExp = &#8220;^[A-Z a-z]{1,}$&#8221; DecimalWithoutZero = &#8220;^(?=.*[1-9].*$)\\d{0,14}(?:\\.\\d[0-9]{0,1})?$&#8221; DecimalWithZero = &#8220;^(?=.*[0-9].*$)\\d{0,14}(?:\\.\\d[0-9]{0,1})?$&#8221; EmailRegularExpression = &#8220;^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$&#8221; IntegerRegularExp = &#8220;^\\d+$&#8221; IntegerWithoutZeroRegularExp = &#8220;^0*[1-9][0-9]*$&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=41&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>RequiredFieldMessage = &#8220;Enter Requiered Field Value&#8221;</p>
<p>NameRegularExpression = &#8220;^[A-Z a-z 0-9]{1,}$&#8221;</p>
<p>OnlyCharRegularExp = &#8220;^[A-Z a-z]{1,}$&#8221;</p>
<p>DecimalWithoutZero = &#8220;^(?=.*[1-9].*$)\\d{0,14}(?:\\.\\d[0-9]{0,1})?$&#8221;</p>
<p>DecimalWithZero = &#8220;^(?=.*[0-9].*$)\\d{0,14}(?:\\.\\d[0-9]{0,1})?$&#8221;</p>
<p>EmailRegularExpression = &#8220;^[\\w-\\.]+@([\\w-]+\\.)+[\\w-]{2,4}$&#8221;</p>
<p>IntegerRegularExp = &#8220;^\\d+$&#8221;</p>
<p>IntegerWithoutZeroRegularExp = &#8220;^0*[1-9][0-9]*$&#8221;</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=41&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/10/24/most-used-regular-expressions-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>How to set Particular Identity No of Column in SQL Server 2005</title>
		<link>http://gunjanshah.wordpress.com/2009/10/24/how-to-set-particular-identity-no-of-column-in-sql-server-2005/</link>
		<comments>http://gunjanshah.wordpress.com/2009/10/24/how-to-set-particular-identity-no-of-column-in-sql-server-2005/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 13:05:01 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=39</guid>
		<description><![CDATA[select IDENT_CURRENT( &#8216;SearchTableQuery&#8217; ) DBCC CHECKIDENT(&#8216;SearchTableQuery&#8217;, RESEED, 11)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=39&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h2>select IDENT_CURRENT( &#8216;SearchTableQuery&#8217; )<br />
DBCC CHECKIDENT(&#8216;SearchTableQuery&#8217;, RESEED, 11)</h2>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=39&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/10/24/how-to-set-particular-identity-no-of-column-in-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Disco File??</title>
		<link>http://gunjanshah.wordpress.com/2009/10/24/what-is-disco-file/</link>
		<comments>http://gunjanshah.wordpress.com/2009/10/24/what-is-disco-file/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 12:10:05 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=34</guid>
		<description><![CDATA[It is a Microsoft technology for publishing and discovering Web Services. DISCO can define a document format along with an interrogation algorithm, making it possible to discover the Web Services exposed on a given server. DISCO makes it possible to discover the capabilities of each Web Service(via documentation) and how to interact with it. To [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=34&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<h3>It is a Microsoft technology for publishing and discovering Web Services.<br />
DISCO can define a document format along with an interrogation algorithm,<br />
making it possible to discover the Web Services exposed on a given server.<br />
DISCO makes it possible to discover the capabilities of each Web Service(via documentation)<br />
and how to interact with it.<br />
To publish a deployed Web Service using DISCO, you simply need to create a .disco file<br />
and place it in the vroot along with the other service-related configuration.</h3>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=34&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/10/24/what-is-disco-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
		<item>
		<title>What is WSDL??</title>
		<link>http://gunjanshah.wordpress.com/2009/10/24/what-is-wsdl/</link>
		<comments>http://gunjanshah.wordpress.com/2009/10/24/what-is-wsdl/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 12:05:01 +0000</pubDate>
		<dc:creator>gunjanshah</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://gunjanshah.wordpress.com/?p=30</guid>
		<description><![CDATA[Files with the WSDL extension contain web service interfaces expressed in the Web Service Description Language (WSDL). WSDL is a standard XML document type specified by the World Wide Web Consortium. WSDL files are used to communicate interface information between web service producers and consumers. A WSDL description allows a client to utilize a web [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=30&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>Files with the WSDL extension contain web service interfaces expressed in the
Web Service Description Language (WSDL).

WSDL is a standard XML document type specified by the World Wide Web Consortium.

WSDL files are used to communicate interface information between web service producers and consumers.

A WSDL description allows a client to utilize a web service’s capabilities without
knowledge of the implementation details of the web service.</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/gunjanshah.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/gunjanshah.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/gunjanshah.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=gunjanshah.wordpress.com&amp;blog=6094115&amp;post=30&amp;subd=gunjanshah&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://gunjanshah.wordpress.com/2009/10/24/what-is-wsdl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/6b8b4231cd30296923bf02d99c4e4f00?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">gunjanshah</media:title>
		</media:content>
	</item>
	</channel>
</rss>
