<?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/"
	>

<channel>
	<title>Interview Tips &#187; server transfer</title>
	<atom:link href="http://tipsinterview.com/tag/server-transfer/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Sun, 20 May 2012 05:16:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>What is the difference between Server.Transfer and Server.Execute?</title>
		<link>http://tipsinterview.com/2010/05/21/what-is-the-difference-between-server-transfer-and-server-execute/</link>
		<comments>http://tipsinterview.com/2010/05/21/what-is-the-difference-between-server-transfer-and-server-execute/#comments</comments>
		<pubDate>Fri, 21 May 2010 00:29:17 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[classic asp]]></category>
		<category><![CDATA[code execution]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[execution]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[page execution]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[server transfer]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=289</guid>
		<description><![CDATA[Both Server.Transfer and Server.Execute were introduced in Classic ASP 3.0 (and still work in ASP.NET). When Server.Execute is used, a URL is passed to it as a parameter, and the control moves to this new page. Execution of code happens on the new page. Once code execution gets over, the control returns to the initial [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/05/21/what-is-the-difference-between-server-transfer-and-server-execute/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp.net interview: How to pass values between pages?</title>
		<link>http://tipsinterview.com/2010/04/13/asp-net-interview-how-to-pass-values-between-pages/</link>
		<comments>http://tipsinterview.com/2010/04/13/asp-net-interview-how-to-pass-values-between-pages/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 02:14:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[aspx]]></category>
		<category><![CDATA[context]]></category>
		<category><![CDATA[context object]]></category>
		<category><![CDATA[context string]]></category>
		<category><![CDATA[DestinationPage]]></category>
		<category><![CDATA[querystring]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[server transfer]]></category>
		<category><![CDATA[session]]></category>
		<category><![CDATA[session object]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/04/13/asp-net-interview-how-to-pass-values-between-pages/</guid>
		<description><![CDATA[Every interviewer will expect this from you. There are several methods to pass values from one page to another page. Described below are few methods to pass values between pages: QueryString - The QueryString method of passing values between web pages is one of the oldest methods of passing values between pages. A variable value [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/04/13/asp-net-interview-how-to-pass-values-between-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>asp.net interview: How to redirect a page to another page?</title>
		<link>http://tipsinterview.com/2010/04/11/asp-net-interview-how-to-redirect-a-page-to-another-page/</link>
		<comments>http://tipsinterview.com/2010/04/11/asp-net-interview-how-to-redirect-a-page-to-another-page/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 02:14:15 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[object syntax]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[response object]]></category>
		<category><![CDATA[server transfer]]></category>
		<category><![CDATA[transfer server]]></category>
		<category><![CDATA[web page visitor]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/04/11/asp-net-interview-how-to-redirect-a-page-to-another-page/</guid>
		<description><![CDATA[A common question asked in interviews. The Response object has a famous Redirect method that is used most widely to transfer a web page visitor from one page to another page. Syntax of Response.Redirect ... Response.Redirect(&#34;DestinationPage.aspx&#34;) There is another famous method called Transfer method of the Server object. Syntax of Server.Transfer ... Server.Transfer(&#34;DestinationPage.aspx&#34;)]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/04/11/asp-net-interview-how-to-redirect-a-page-to-another-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?</title>
		<link>http://tipsinterview.com/2010/02/02/what-is-the-difference-between-server-transfer-and-response-redirect-why-would-i-choose-one-over-the-other/</link>
		<comments>http://tipsinterview.com/2010/02/02/what-is-the-difference-between-server-transfer-and-response-redirect-why-would-i-choose-one-over-the-other/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 05:02:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[loation]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[query string]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[scalability problems]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[server transfer]]></category>
		<category><![CDATA[transactional integrity]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/02/02/what-is-the-difference-between-server-transfer-and-response-redirect-why-would-i-choose-one-over-the-other/</guid>
		<description><![CDATA[Some of we developers may confused about these 2 method, Server.Transfer() : client is shown as it is on the requesting page only, but the all the content is of the requested page. Data can be persist accros the pages using Context.Item collection, which is one of the best way to transfer data from one [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/02/02/what-is-the-difference-between-server-transfer-and-response-redirect-why-would-i-choose-one-over-the-other/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

