<?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>Welcome to my World</title>
	<atom:link href="http://ravulareddy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ravulareddy.wordpress.com</link>
	<description>Rajender Reddy Ravula</description>
	<lastBuildDate>Wed, 20 May 2009 03:45:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='ravulareddy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/5db7cbe8ef9f8bb6ebb574ab770427e7?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Welcome to my World</title>
		<link>http://ravulareddy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ravulareddy.wordpress.com/osd.xml" title="Welcome to my World" />
	<atom:link rel='hub' href='http://ravulareddy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>ExecuteReader, ExecuteScalar Explained</title>
		<link>http://ravulareddy.wordpress.com/2009/05/20/executereader-executescalar-explained/</link>
		<comments>http://ravulareddy.wordpress.com/2009/05/20/executereader-executescalar-explained/#comments</comments>
		<pubDate>Wed, 20 May 2009 03:45:12 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/2009/05/20/executereader-executescalar-explained/</guid>
		<description><![CDATA[SqlClient namespace in ADO.NET provides 3 basic methods to run queries with SqlCommand against MSSQL: * ExecuteReader * ExecuteNonQuery * ExecuteScalar .NET Framework is around for 5 years already now, but these 3 methods are among the most misused in application development. The problem is that ExecuteReader will work for every query via SqlCommand, so [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=34&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SqlClient namespace in ADO.NET provides 3 basic methods to run queries with SqlCommand against MSSQL:</p>
<p>    * ExecuteReader<br />
    * ExecuteNonQuery<br />
    * ExecuteScalar</p>
<p>.NET Framework is around for 5 years already now, but these 3 methods are among the most misused in application development. The problem is that ExecuteReader will work for every query via SqlCommand, so most people use it everywhere. The direct result &#8211; slow and non-scalable solution. Other results include database bottlenecks, locks and connection leaks.</p>
<p>So I decided to provide a small cheat-sheet that clearly demonstrates when to use each method.</p>
<p>ExecuteReader</p>
<p>Do not use: when database query is going to provide for sure exactly 1 record. It may be getting record by its id (which is PK in the database) &#8211; GetOrderById and such. In this case use ExecuteNonQuery with output parameters.</p>
<p>Use: when database query is going to provide a set of records. It may be search or report.</p>
<p>ExecuteNonQuery</p>
<p>Use: when we are talking about a single database record &#8211; in Update, Insert, Delete and Get by Id. In all these cases we can use input/output/input-output parameters. Please note that from the application architecture point of view it is also good practices when your Insert and Update stored procedure returns changed record exactly like Get By Id method does.</p>
<p>ExecuteScalar</p>
<p>Do not use: when database query returns a single value and this value can be defined as parameter in T-SQL. ExecuteNonQuery with output parameter(s) is always preferred in this case since it is more flexible, tomorrow there will be 2 values therefore having ExecuteNonQuery we do not need to change method signatures.</p>
<p>Use: when database query returns a single value and this value cannot be defined as output parameter, because of T-SQL type limitation for variables. For example type image cannot be output parameter in MSSQL.</p>
<p>The most common example for ExecuteScalar is fetching a single image stored in the database and converting it to array of bytes. If you google it &#8211; most examples will demonstrate using of ExecuteReader to accomplish image handler, however ExecuteScalar will be more scalable and faster.</p>
<p>Conclusion</p>
<p>Always use ExecuteNonQuery except: when you have a set of records &#8211; use ExecuteReader and when you have a single output value that cannot be defined as a parameter &#8211; use ExecuteScalar. Hope this helped to clarify something.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=34&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2009/05/20/executereader-executescalar-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Clear Recent Project list or File list from Visual Studio .Net</title>
		<link>http://ravulareddy.wordpress.com/2009/03/09/clear-recent-project-list-or-file-list-from-visual-studio-net/</link>
		<comments>http://ravulareddy.wordpress.com/2009/03/09/clear-recent-project-list-or-file-list-from-visual-studio-net/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 15:38:17 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=32</guid>
		<description><![CDATA[Close Visual Studio (if its open) GOTO &#62; Start &#62; Run &#62; RegEdit GOTO &#62; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&#60;version&#62;\ProjectMRUList remove unnecessary items from list. Similarly repeat the steps for FileMRuList GOTO &#62; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&#60;version&#62;\FileMRUList remove unnecessary items from list. To Clear the Find and Replace List GOTO &#62; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&#60;version&#62;\Find remove unnecessary items from list.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=32&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Close Visual Studio (if its open)</p>
<p>GOTO &gt; Start &gt; Run &gt; RegEdit</p>
<p>GOTO &gt; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&lt;version&gt;\ProjectMRUList<br />
remove unnecessary items from list.</p>
<p>Similarly repeat the steps for FileMRuList<br />
GOTO &gt; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&lt;version&gt;\FileMRUList<br />
remove unnecessary items from list.</p>
<p>To Clear the Find and Replace List<br />
GOTO &gt; HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\&lt;version&gt;\Find<br />
remove unnecessary items from list.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=32&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2009/03/09/clear-recent-project-list-or-file-list-from-visual-studio-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Missing an item template and all templates in Visual Studio 2005</title>
		<link>http://ravulareddy.wordpress.com/2009/02/28/missing-an-item-template-and-all-templates-in-visual-studio-2005/</link>
		<comments>http://ravulareddy.wordpress.com/2009/02/28/missing-an-item-template-and-all-templates-in-visual-studio-2005/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 15:50:12 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=28</guid>
		<description><![CDATA[First, close Visual Studio.  Open a new ‘Visual Studio 2005 Command Prompt’.  Once there type the following command at the prompt, press enter and wait… devenv /installvstemplates This will rebuild your item and project template cache Another Option is Open the Options window in Visual Studio. Select Projects and Solutions. Change the Visual Studio user item [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=28&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First, close Visual Studio.  Open a new ‘Visual Studio 2005 Command Prompt’.  Once there type the following command at the prompt, press enter and wait…</p>
<blockquote><p><strong>devenv /installvstemplates</strong></p></blockquote>
<p>This will rebuild your item and project template cache</p>
<p>Another Option is</p>
<p>Open the Options window in Visual Studio.<br />
Select Projects and Solutions.<br />
Change the Visual Studio user item template location to the folder where the standard templates are located ( C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\ItemTemplates ).</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/28/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/28/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/28/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=28&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2009/02/28/missing-an-item-template-and-all-templates-in-visual-studio-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Integrate ASP.Net 2.0 web Application to Sharepoint</title>
		<link>http://ravulareddy.wordpress.com/2009/02/18/integrate-aspnet-20-web-application-to-sharepoint/</link>
		<comments>http://ravulareddy.wordpress.com/2009/02/18/integrate-aspnet-20-web-application-to-sharepoint/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:46:32 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=25</guid>
		<description><![CDATA[1. Create an ASP.Net web form , just have one or two text box (right now dont put AJAX, because AJAX and MOSS requires more settings in web.config file, so for now lets just focus on page without AJAX) 2.  Now go to &#8220;C:\Inetpub\wwwroot\wss\VirtualDirectories\80\&#8221; directory and create one folder name &#8220;CustomWebPage&#8221;  3. Compile you aspx [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=25&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Create an ASP.Net web form , just have one or two text box (right now dont put AJAX, because AJAX and MOSS requires more settings in web.config file, so for now lets just focus on page without AJAX)</p>
<p>2.  Now go to &#8220;C:\Inetpub\wwwroot\wss\VirtualDirectories\80\&#8221; directory and create one folder name &#8220;CustomWebPage&#8221;</p>
<p> 3. Compile you aspx page and copy your aspx page to the &#8220;C:\Inetpub\wwwroot\wss\VirtualDirectories\80\CustomWebPage&#8221; folder</p>
<p>4. Now copy your asp.net app dll to the &#8220;C:\Inetpub\wwwroot\wss\VirtualDirectories\80\bin\&#8221; folder</p>
<p>5. You are done, now can brows your page http://yourmachineName:defaultport(inwhich sharepoint is running) / CustomWebPage/YourPage.aspx</p>
<p>6. Now you can create a simple WebPart and deploy it in the share point, i the web part you can give the link for your aspx page</p>
<p>Now for AJAX integration with MOSS, you have to brows this link, it will explain you steps to integrate AJAX</p>
<p><a href="http://sharepoint.microsoft.com/blogs/mike/Lists/Posts/Post.aspx?ID=3">http://sharepoint.microsoft.com/blogs/mike/Lists/Posts/Post.aspx?ID=3</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=25&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2009/02/18/integrate-aspnet-20-web-application-to-sharepoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>how do i add/publish my website/blog on the internet</title>
		<link>http://ravulareddy.wordpress.com/2008/12/28/how-do-i-addpublish-my-websiteblog-on-the-internet/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/28/how-do-i-addpublish-my-websiteblog-on-the-internet/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 12:36:12 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=23</guid>
		<description><![CDATA[Goto 1) http://directory.google.com/Top/Science/Educational_Resources/ then scroll down the page and you would find Help build the largest human-edited directory on the web. Submit a Site &#8211; Open Directory Project &#8211; Become an Editor Click on Submit a Site 2) Now you would have to enter the credentials and submit your site. Wait for like 1-2 weeks and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=23&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Goto</p>
<p>1) <a href="http://directory.google.com/Top/Science/Educational_Resources/">http://directory.google.com/Top/Science/Educational_Resources/</a> then scroll down the page and you would find</p>
<table border="0" cellspacing="0" cellpadding="3" align="center" bgcolor="#336600">
<tbody>
<tr>
<td>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tbody>
<tr align="center">
<td><span style="font-size:x-small;color:#ffffff;font-family:arial,sans-serif,helvetica;">Help build the largest human-edited directory on the web.</span></td>
</tr>
<tr align="center" bgcolor="#cccccc">
<td><span style="font-size:x-small;font-family:arial,sans-serif,helvetica;"><a href="http://dmoz.org/cgi-bin/add.cgi?where=Science/Educational_Resources">Submit a Site</a> &#8211; <a href="http://dmoz.org/about.html"><strong>Open Directory Project</strong></a> &#8211; <a href="http://dmoz.org/cgi-bin/apply.cgi?where=Science/Educational_Resources">Become an Editor</a> </span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p>Click on Submit a Site</p>
<p>2) Now you would have to enter the credentials and submit your site. Wait for like 1-2 weeks and your site would come up in the google or any other search engine sites</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=23&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/28/how-do-i-addpublish-my-websiteblog-on-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Vista: How to Extract Content from MSI Files</title>
		<link>http://ravulareddy.wordpress.com/2008/12/27/vista-how-to-extract-content-from-msi-files/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/27/vista-how-to-extract-content-from-msi-files/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:30:25 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=19</guid>
		<description><![CDATA[1. Click the Start button. 2. Click All Programs. 3. Go into Accessories. 4. Right-click on Command Prompt. 5. Select Run as administrator. 6. When the UAC Prompt appears, click Continue. Once you have your elevated command prompt, input the following: msiexec /a filepath to MSI file /qb TARGETDIR=filepath to target folder example: msiexec /a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=19&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>1. Click the Start button.</p>
<p>2. Click All Programs.</p>
<p>3. Go into Accessories.</p>
<p>4. Right-click on Command Prompt.</p>
<p>5. Select Run as administrator.</p>
<p>6. When the UAC Prompt appears, click Continue.</p>
<p>Once you have your elevated command prompt, input the following:</p>
<p>msiexec /a filepath to MSI file /qb TARGETDIR=filepath to target folder</p>
<p>example: msiexec /a c:\downloads\sqlserversamples.msi /qb</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=19&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/27/vista-how-to-extract-content-from-msi-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL Reporting Service Configuration and Installation</title>
		<link>http://ravulareddy.wordpress.com/2008/12/27/before-you-install-sql-server-2005-reporting-services-you-must-enable-microsoft-aspnet-and-microsoft-internet-information-services-iis-to-enable-aspnet-and-iis-follow-these-steps-1-in-con/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/27/before-you-install-sql-server-2005-reporting-services-you-must-enable-microsoft-aspnet-and-microsoft-internet-information-services-iis-to-enable-aspnet-and-iis-follow-these-steps-1-in-con/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:26:36 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=15</guid>
		<description><![CDATA[ASP.NET not installed or is not registered on web server This error pained me for some time while attempting to install SQL Reporting Services Standard Edition. I just ignored it at first and was clueless as to why SRS setup would only install client tools. I traced the problem to the fact that I was [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=15&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>ASP.NET not installed or is not registered on web server</strong><br />
This error pained me for some time while attempting to install SQL Reporting Services Standard Edition. I just ignored it at first and was clueless as to why SRS setup would only install client tools. I traced the problem to the fact that I was using Windows 2003 Server SP1. A little <a href="http://www.google.com/search?hl=en&amp;lr=&amp;q=Windows+2003+Server+%2B+uninstall+.NET&amp;btnG=Search">Googling</a> and I found a starting point. Windows 2003 shipped with .NET pre-installed. Well, sort of installed. I had to actually install it by performing the following:</p>
<ol>
<li>Click `Start` button &gt; `Control Panel` &gt; `Add or Remove Programs`</li>
<li>Click `Add/Remove Windows Components`</li>
<li>Highlight `Application Server`</li>
<li>Click `Details`</li>
<li>Make sure `ASP.NET` is checked</li>
<li>Click `OK`</li>
</ol>
<p>Now you need to register this version of ASP.NET with IIS.</p>
<ol>
<li>Click `Start` button &gt; `Run`</li>
<li>Type `cmd`</li>
<li>Click `OK`</li>
<li>Type `cd C:\WINNT\Microsoft.NET\Framework\v1.1.4322`</li>
<li>Press `Enter` key</li>
<li>Type `aspnet_regiis.exe -i`</li>
<li>Press `Enter` key</li>
</ol>
<p>This will install and register ASP.NET v1.1.4322 with IIS.</p>
<p>At this point try to reinstall SRS Standard Edition and see if you can bypass the error message. If the error message still appears there is one more thing you can do.</p>
<p><strong>Still Getting ASP.NET 1.1 Error Messages After Registering ASP.NET v1.1?</strong><br />
I had this problem too after registering ASP.NET with IIS. After browsing my installed programs I noticed that I now had ASP.NET versions 1.1 and 2.0 on my machine. After searching the Internet I found that there is an installation log file for SRS that might give some more information.</p>
<p><code>C:\Program Files\Microsoft SQL Server\80\RS Setup Bootstrap\Log\*.cab<br />
</code><br />
In this file you are looking for the following:</p>
<p><code>&lt;Prerequisite Name="IsASPNET4322Installed" Checked="Registry" Item="HKLM\SOFTWARE\Microsoft\ASP.Net\RootVer"<br />
Found="Can not get value" Expected="1.1.4322.x" Result="Fail" /&gt;<br />
</code><br />
Now simply open Registry Editor (`Start` &gt; `Run` &gt; Type `regedit` &gt; `OK`) and browse to the ASP.NET folder by using the path from above and check to see what (if any) root version you have. Make sure that the `RootVer` value is `1.1.4322.0` and close Registry Editor. Now try reinstalling SRS Standard Edition.</p>
<p>Original savior: <a href="http://groups.google.com/group/microsoft.public.crm/browse_thread/thread/2367819deff098d7/978630f5858ed809%23978630f5858ed809">Jon Swoveland</a> via <a href="http://groups.google.com/">Google Groups</a></p>
<p><!-- new --><strong>Permissions issues</strong><br />
Now after successfully installing SRS things should go smoothly right? Well for me: wrong, completely wrong. If you are new to SRS (and don&#8217;t have networking experience) then you are probably falling into an endless pit of permissions-issues. The following instructions are for setting up SRS in a way similar to my installation.</p>
<p>First you need to disable anonymous access to the ReportServer and Reports applications.</p>
<ol>
<li>Click &#8216;Start&#8217; &gt; &#8216;Run&#8217;</li>
<li>Type &#8216;inetmgr&#8217; &gt; &#8216;OK&#8217;</li>
<li>Click &#8216;Default Website&#8217; (could be different depending on your setup)</li>
<li>Right-click &#8216;Reports&#8217; application &gt; &#8216;Properties&#8217; &gt; Click &#8216;Directory Security&#8217; tab &gt; Click &#8216;Edit&#8217;</li>
<li>Uncheck &#8216;Enable anonymous access&#8217;</li>
<li>Check &#8216;Integrated Windows authentication&#8217;</li>
<li>Click &#8216;OK&#8217; &gt; Click &#8216;OK&#8217;</li>
<li>Right-click &#8216;Reports&#8217; application &gt; &#8216;Permissions&#8217;</li>
<li>Highlight the user that will access the reports (Most likely Domain\I_USR) &#8211; If user doesn&#8217;t exist Click &#8216;Add&#8217; &gt; &#8216;Advanced&#8217; &gt; &#8216;Find Now&#8217; &gt; Select the users &gt; &#8216;OK&#8217; &gt; &#8216;OK&#8217;</li>
<li>Give this user (check) everything but &#8216;Full Control&#8217; and &#8216;Special Permissions&#8217; (just to be safe!)</li>
<li>Repeat the steps above for the &#8216;Report Server&#8217; application</li>
</ol>
<p>Now it&#8217;s time to create permissions in SQL Server. You will need to remember all the users that you added above. While we are on the subject this would be a good time to create a Group (i.e. SQLReportUsers) and add users to it. This way instead of adding multiple users each time you create a new report you could simply add that user (or users) to the Group and they will inherit the permissions. Feel free to configure however you want though.</p>
<ol>
<li>Open Enterprise Manager</li>
<li>Click &#8216;Your_Server_Name&#8217; &gt; &#8216;Security&#8217; &gt; &#8216;Logins&#8217;</li>
<li>Create new logins for the users you granted permissions to above</li>
<li>Right-click &#8216;Logins&#8217; &gt; &#8216;New Login&#8217; &gt; Click &#8216;&#8230;&#8217; button &gt; Select user/users &gt; Click &#8216;OK&#8217;</li>
<li>Make sure &#8216;Windows Authentication&#8217; is selected</li>
<li>Make sure the appropriate domain is selected</li>
<li>Make sure &#8216;Grant access&#8217; selected</li>
<li>Select &#8216;ReportServer&#8217; for the default database</li>
<li>Click &#8216;Database Access&#8217; tab</li>
<li>Select (check) all the databases this user needs to access (everything the Report Service touches)</li>
<li>For each database selected make sure that you select at least: &#8216;public&#8217;, &#8216;db_datareader&#8217;, &#8216;db_datawriter&#8217;</li>
<li>Open the database that includes the stored procedure used to generate the report</li>
<li>Click &#8216;Users&#8217; &gt; Right-click the login &gt; &#8216;Properties&#8217; &gt; Click &#8216;Permissions&#8217; button</li>
<li>Scroll down to the stored procedure object and make sure that the &#8216;Exec&#8217; column is checked</li>
<li>Make sure the user has &#8216;Exec&#8217; privileges on any other relevant stored procedures</li>
</ol>
<p><strong>Time to Configure the Reports in Report Manager</strong><br />
Upon installing SQL Reporting Services there <span style="text-decoration:line-through;">will</span> should be a folder called &#8216;SQL Reporting Services&#8217; in the &#8216;Start&#8217; &gt; &#8216;All Programs&#8217; &gt; &#8216;Microsoft SQL Server&#8217; directory. In this folder you should find the &#8216;Report Manager&#8217; shortcut. Opening this takes you to the Report Manager homepage. From here you can edit existing reports, publish new reports, and most importantly: configure report security and user roles. If you are still getting permissions-related issues then this module is where you would hopefully correct the problem(s).</p>
<p><code>The permissions granted to user 'DOMAIN\user' are insufficient for performing this operation.</code></p>
<p>That error threw me off for the longest time. I performed all of the operations above and still had no luck. Here are insructions for how I solved this problem via Report Manager.</p>
<ol>
<li>Navigate to the report you are configuring by drilling down to the folder where the .rds and .rdl file(s) reside.</li>
<li>Click &#8216;Properties&#8217; tab (top navigation bar)</li>
<li>Click &#8216;Security&#8217; tab (on left navigation bar)</li>
<li>Click &#8216;New Role Assignment&#8217; (top navigation bar)</li>
<li>Type &#8216;Group_or_Username_From_Above&#8217; in the &#8216;Group or user name&#8217; textbox</li>
<li>Select &#8216;Browser&#8217; for the role (May view folders, reports and subscribe to reports) &gt; click &#8216;OK&#8217;</li>
<li>Click &#8216;ReportFileName&#8217;</li>
<li>Click &#8216;Properties&#8217; tab (top navigation bar)</li>
<li>Repeat above steps</li>
</ol>
<p><strong>Update Your web.config File Accordingly</strong><br />
This was the crucial piece to the puzzle for me. I had the authentication section set correctly but forgot to include the authorization section in my web.config! I was impersonating the user correctly but said user wasn&#8217;t allowed. Don&#8217;t let this happen to you.</p>
<p><code><span style="color:#0000ff;"> </span></code></p>
<p><span style="color:#0000ff;">&lt;</span><span style="color:#800000;">system.web</span><span style="color:#0000ff;">&gt;</span></p>
<p><span style="color:#0000ff;"> &lt;</span><span style="color:#800000;">authentication</span><span style="color:#ff00ff;"> </span><span style="color:#ff0000;">mode</span><span style="color:#0000ff;">=&#8221;Windows&#8221;</span><span style="color:#ff00ff;"> </span><span style="color:#0000ff;">/&gt;<br />
</span><span style="color:#0000ff;"> &lt;</span><span style="color:#800000;">identity</span><span style="color:#ff00ff;"> </span><span style="color:#ff0000;">impersonate</span><span style="color:#0000ff;">=&#8221;true&#8221;</span><span style="color:#ff00ff;"> </span><span style="color:#0000ff;">/&gt;</span></p>
<p><span style="color:#0000ff;">&lt;</span><span style="color:#800000;">authorization</span><span style="color:#0000ff;">&gt;<br />
</span><span style="color:#0000ff;"> &lt;</span><span style="color:#800000;">deny</span><span style="color:#ff00ff;"> </span><span style="color:#ff0000;">users</span><span style="color:#0000ff;">=&#8221;?&#8221;</span><span style="color:#ff00ff;"> </span><span style="color:#0000ff;">/&gt;<br />
</span><span style="color:#0000ff;"> &lt;</span><span style="color:#800000;">allow</span><span style="color:#ff00ff;"> </span><span style="color:#ff0000;">users</span><span style="color:#0000ff;">=&#8221;*&#8221;</span><span style="color:#ff00ff;"> </span><span style="color:#0000ff;">/&gt;<br />
</span><span style="color:#0000ff;"> &lt;/</span><span style="color:#800000;">authorization</span><span style="color:#0000ff;">&gt;</span></p>
<p><span style="color:#0000ff;">&lt;/</span><span style="color:#800000;">system.web</span><span style="color:#0000ff;">&gt;</span></p>
<p>Related: <a href="http://www.odetocode.com/Articles/216.aspx">Authentication, Role-based Security, and SQL Reporting Services Web Service</a></p>
<p>Hopefully now SRS will work for you from your web applications. Feel free to post questions or e-mail me and I will try my best to respond with a fix or something close to it!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=15&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/27/before-you-install-sql-server-2005-reporting-services-you-must-enable-microsoft-aspnet-and-microsoft-internet-information-services-iis-to-enable-aspnet-and-iis-follow-these-steps-1-in-con/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>How to install SQL Server 2005 Reporting Services on a Windows Vista-based computer</title>
		<link>http://ravulareddy.wordpress.com/2008/12/27/how-to-install-sql-server-2005-reporting-services-on-a-windows-vista-based-computer/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/27/how-to-install-sql-server-2005-reporting-services-on-a-windows-vista-based-computer/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:19:10 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=12</guid>
		<description><![CDATA[Before you install SQL Server 2005 Reporting Services, you must enable Microsoft ASP.NET and Microsoft Internet Information Services (IIS). To enable ASP.NET and IIS, follow these steps: In Control Panel, click Programs, and then double-click Programs and Features. In the User Account Control dialog box, click Continue. Click Turn Windows features on or off. In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=12&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Before you install SQL Server 2005 Reporting Services, you must 		  enable Microsoft ASP.NET and Microsoft Internet Information Services (IIS). To 		  enable ASP.NET and IIS, follow these steps:</p>
<ol>
<li>In Control Panel, click <strong class="uiterm">Programs</strong>, and then double-click <strong class="uiterm">Programs and Features</strong>.</li>
<li>In the <strong class="uiterm">User Account Control</strong> dialog box, click <strong class="uiterm">Continue</strong>.</li>
<li>Click <strong class="uiterm">Turn Windows features on or 				off</strong>.</li>
<li>In the <strong class="uiterm">Windows Features</strong> dialog box, expand 				<strong class="uiterm">Internet Information Services</strong>, expand <strong class="uiterm">Web Management Tools</strong>, 				expand <strong class="uiterm">IIS 6 Management Compatibility</strong>, and then click to 				select the following check boxes:
<ul>
<li><strong class="uiterm">IIS 6 WMI Compatibility</strong></li>
<li><strong class="uiterm">IIS Metabase and IIS 6 configuration 					 compatibility</strong></li>
</ul>
</li>
<li>Expand <strong class="uiterm">World Wide Web Services</strong>, expand 				<strong class="uiterm">Application Development Features</strong>, and then click to select the 				following check boxes:
<ul>
<li><strong class="uiterm">ASP.NET</strong></li>
<li><strong class="uiterm">ISAPI Extensions</strong></li>
<li><strong class="uiterm">ISAPI Filters</strong></li>
</ul>
</li>
<li>Expand <strong class="uiterm">Common HTTP Features</strong>, and then 				click to select the following check boxes:
<ul>
<li><strong class="uiterm">Default Document</strong></li>
<li><strong class="uiterm">Directory Browsing</strong></li>
<li><strong class="uiterm">HTTP Errors</strong></li>
<li><strong class="uiterm">HTTP Redirection</strong></li>
<li><strong class="uiterm">Static Content</strong></li>
</ul>
</li>
<li>Expand <strong class="uiterm">Security</strong>, and then click to select 				the <strong class="uiterm">Windows Authentication</strong> check box.</li>
</ol>
<p><strong>Note</strong> If you do not enable all these features, the <strong class="uiterm">Reporting Services</strong> option does not appear in the <strong class="uiterm">Feature Selection</strong> dialog box of the SQL Server Setup program.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=12&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/27/how-to-install-sql-server-2005-reporting-services-on-a-windows-vista-based-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Print and Search are not visible in SSRS Reports</title>
		<link>http://ravulareddy.wordpress.com/2008/12/27/print-and-search-are-not-visible-in-ssrs-reports/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/27/print-and-search-are-not-visible-in-ssrs-reports/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:17:14 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/2008/12/27/print-and-search-are-not-visible-in-ssrs-reports/</guid>
		<description><![CDATA[Print is implemented and is based on ActiveX control, (Which is available only in IE) That is the reason, Print is not visible in Firefox web browser. Zoom is another IE specific feature available only to IE<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=11&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Print is implemented and is based on ActiveX control, (Which is available only in IE) That is the reason, Print is not visible in Firefox web browser.</p>
<p>Zoom is another IE specific feature available only to IE</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=11&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/27/print-and-search-are-not-visible-in-ssrs-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
		<item>
		<title>Failed to access IIS metabase.</title>
		<link>http://ravulareddy.wordpress.com/2008/12/27/failed-to-access-iis-metabase/</link>
		<comments>http://ravulareddy.wordpress.com/2008/12/27/failed-to-access-iis-metabase/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 01:15:47 +0000</pubDate>
		<dc:creator>ravulareddy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ravulareddy.wordpress.com/?p=9</guid>
		<description><![CDATA[This error typically occurs when you install IIS after you have asp.net installed. It is a very simple fix. Copy and paste this into the Run Command from the Start Menu. %windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i This will reinstall asp.net for use with IIS and in most cases fixes the error stated above.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=9&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This error typically occurs when you install IIS after you have asp.net installed. It is a very simple fix.</p>
<p>Copy and paste this into the Run Command from the Start Menu.<br />
%windir%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -i</p>
<p>This will reinstall asp.net for use with IIS and in most cases fixes the error stated above.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ravulareddy.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ravulareddy.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ravulareddy.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ravulareddy.wordpress.com&amp;blog=4892315&amp;post=9&amp;subd=ravulareddy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://ravulareddy.wordpress.com/2008/12/27/failed-to-access-iis-metabase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62c3a0a4777b789957bb8514fb8d48d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ravulareddy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
