<?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; quot</title>
	<atom:link href="http://tipsinterview.com/tag/quot/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Sat, 11 Sep 2010 00:49:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<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 questions on cookie</title>
		<link>http://tipsinterview.com/2010/04/12/asp-net-interview-questions-on-cookie/</link>
		<comments>http://tipsinterview.com/2010/04/12/asp-net-interview-questions-on-cookie/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 02:12:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[browser stores]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[cookie object]]></category>
		<category><![CDATA[cookie value]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[s system]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[server memory]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/04/12/asp-net-interview-questions-on-cookie/</guid>
		<description><![CDATA[The cookie object is the essence of any interview, be it ASP NET interview or Java interview or PHP interview. Cookie - A cookie is a piece of data that is stored on a user's browser. Thus, a cookie does not use any server memory. It is actually a small text file which is created [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/04/12/asp-net-interview-questions-on-cookie/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>asp.net interview: creating a cookie from source using c#</title>
		<link>http://tipsinterview.com/2010/04/11/asp-net-interview-creating-a-cookie-from-source-using-c/</link>
		<comments>http://tipsinterview.com/2010/04/11/asp-net-interview-creating-a-cookie-from-source-using-c/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 02:10:59 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[cookie]]></category>
		<category><![CDATA[Cookies]]></category>
		<category><![CDATA[HttpCookie]]></category>
		<category><![CDATA[maid]]></category>
		<category><![CDATA[quot]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/04/11/asp-net-interview-creating-a-cookie-from-source-using-c/</guid>
		<description><![CDATA[&#160; protected void Page_Load(object sender, EventArgs e) { &#160;&#160;&#160; HttpCookie cookie = Request.Cookies[&#34;maid&#34;];&#160;&#160; &#160;&#160;&#160; if (cookie == null)&#160;&#160; &#160;&#160;&#160; {&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160; cookie = new HttpCookie(&#34;maid&#34;);&#160;&#160; &#160;&#160;&#160; } &#160;&#160;&#160; cookie[&#34;id&#34;] = &#34;123&#34;;&#160;&#160; &#160;&#160;&#160; cookie.Expires = DateTime.Now.AddMinutes(10);&#160;&#160; &#160;&#160;&#160; Response.Cookies.Add(cookie);&#160;&#160; }]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/04/11/asp-net-interview-creating-a-cookie-from-source-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Ways to Negotiate a Better Job Offer</title>
		<link>http://tipsinterview.com/2010/04/02/3-ways-to-negotiate-a-better-job-offer/</link>
		<comments>http://tipsinterview.com/2010/04/02/3-ways-to-negotiate-a-better-job-offer/#comments</comments>
		<pubDate>Fri, 02 Apr 2010 00:44:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Interview Tips]]></category>
		<category><![CDATA[best possible deal]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[employer]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[prospective employer]]></category>
		<category><![CDATA[prospective employers]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[self confidence]]></category>
		<category><![CDATA[terms of employment]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/04/02/3-ways-to-negotiate-a-better-job-offer/</guid>
		<description><![CDATA[1. Get a potential employer to &#34;fall in love&#34; with you before you talk about money. The time to be asking for things is after an employer has decided to hire you. Focus on what is important to the employer and what you can do for them. In tough times, making or saving money is [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/04/02/3-ways-to-negotiate-a-better-job-offer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Interview Question: What is Index Tuning?</title>
		<link>http://tipsinterview.com/2010/03/27/database-interview-question-what-is-index-tuning/</link>
		<comments>http://tipsinterview.com/2010/03/27/database-interview-question-what-is-index-tuning/#comments</comments>
		<pubDate>Sat, 27 Mar 2010 08:43:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[database administrators]]></category>
		<category><![CDATA[Index]]></category>
		<category><![CDATA[index selection]]></category>
		<category><![CDATA[performance gains]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[selection process]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sql statements]]></category>
		<category><![CDATA[Tuning]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/27/database-interview-question-what-is-index-tuning/</guid>
		<description><![CDATA[One of the hardest tasks facing database administrators is the selection of appropriate columns for non-clustered indexes. You should consider creating non-clustered indexes on any columns that are frequently referenced in the WHERE clauses of SQL statements. Other good candidates are columns referenced by JOIN and GROUP BY operations. You may wish to also consider [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/27/database-interview-question-what-is-index-tuning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lie in an Interview? Right or Wrong? Part 2</title>
		<link>http://tipsinterview.com/2010/03/23/lie-in-an-interview-right-or-wrong-part-2/</link>
		<comments>http://tipsinterview.com/2010/03/23/lie-in-an-interview-right-or-wrong-part-2/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 02:23:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Interview Tips]]></category>
		<category><![CDATA[credit checks]]></category>
		<category><![CDATA[guinn]]></category>
		<category><![CDATA[hr department]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[reference checks]]></category>
		<category><![CDATA[salary]]></category>
		<category><![CDATA[term job]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/23/lie-in-an-interview-right-or-wrong-part-2/</guid>
		<description><![CDATA[Continue my last post, http://tipsinterview.com/2010/03/22/lie-in-an-interview-right-or-wrong-part-1/ 4. I don't have any experience in the field or industry? It will be clear in the interview that the experience you have from one position may not be in line with your needs working in a new position, Guinn says. &#34;There is nothing in that which is inappropriate or [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/23/lie-in-an-interview-right-or-wrong-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lie in an Interview? Right or Wrong? Part 1</title>
		<link>http://tipsinterview.com/2010/03/22/lie-in-an-interview-right-or-wrong-part-1/</link>
		<comments>http://tipsinterview.com/2010/03/22/lie-in-an-interview-right-or-wrong-part-1/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 02:17:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Interview Tips]]></category>
		<category><![CDATA[Alan Guinn]]></category>
		<category><![CDATA[consultancy group]]></category>
		<category><![CDATA[employer]]></category>
		<category><![CDATA[guinn]]></category>
		<category><![CDATA[honesty]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[social stigma]]></category>
		<category><![CDATA[success achievement]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tuition reimbursement program]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/22/lie-in-an-interview-right-or-wrong-part-1/</guid>
		<description><![CDATA[You're not supposed to lie, so how do you explain away all these things and remain in the running for a job? Or, the better question is, can you? &#34;The honesty police may arrest me, but I'd have to say that everyone has probably shaded the truth in an interview,&#34; says Alan Guinn, managing director [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/22/lie-in-an-interview-right-or-wrong-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are different types of directives in .NET?</title>
		<link>http://tipsinterview.com/2010/03/20/what-are-different-types-of-directives-in-net-2/</link>
		<comments>http://tipsinterview.com/2010/03/20/what-are-different-types-of-directives-in-net-2/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 02:31:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[adrotator]]></category>
		<category><![CDATA[aspx files]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[assembly name]]></category>
		<category><![CDATA[concise notation]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[import namespace]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[quot]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/20/what-are-different-types-of-directives-in-net-2/</guid>
		<description><![CDATA[@Page: Defines page-specific attributes used by the ASP.NET page parser and compiler. Can be included only in .aspx files &#60;%@ Page AspCompat=&#34;TRUE&#34; language=&#34;C#&#34; %&#62; @Control:Defines control-specific attributes used by the ASP.NET page parser and compiler. Can be included only in .ascx files. &#60;%@ Control Language=&#34;VB&#34; EnableViewState=&#34;false&#34; %&#62; @Import: Explicitly imports a namespace into a page [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/20/what-are-different-types-of-directives-in-net-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How the SQL Server Session state entry is in the Web Config ??</title>
		<link>http://tipsinterview.com/2010/03/17/how-the-sql-server-session-state-entry-is-in-the-web-config/</link>
		<comments>http://tipsinterview.com/2010/03/17/how-the-sql-server-session-state-entry-is-in-the-web-config/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 02:25:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[data source]]></category>
		<category><![CDATA[InProc]]></category>
		<category><![CDATA[lt]]></category>
		<category><![CDATA[mode]]></category>
		<category><![CDATA[quot]]></category>
		<category><![CDATA[sessionState]]></category>
		<category><![CDATA[tcpip]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/17/how-the-sql-server-session-state-entry-is-in-the-web-config/</guid>
		<description><![CDATA[&#60;sessionState mode=&#34;InProc&#34; stateConnectionString=&#34;tcpip=127.0.0.1:42424&#34; sqlConnectionString=&#34;data source=127.0.0.1;Trusted_Connection=yes&#34; cookieless=&#34;false&#34; timeout=&#34;20&#34; /&#62;]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/17/how-the-sql-server-session-state-entry-is-in-the-web-config/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
