<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Assigning Session to nothing or Session.Abandon</title>
	<atom:link href="http://blog.joggee.com/index.php?feed=rss2&#038;p=143" rel="self" type="application/rss+xml" />
	<link>http://blog.joggee.com/?p=143</link>
	<description>ASP.NET,VB.NET,C#.NET,SQL SERVER,DATABASE,XML,WEBSERVICES,JAVA,SOFTWARE,PROGRAMMING,MANAGEMENT</description>
	<lastBuildDate>Wed, 03 Feb 2010 02:47:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Alexei</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-353</link>
		<dc:creator>Alexei</dc:creator>
		<pubDate>Sat, 06 Dec 2008 15:58:45 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-353</guid>
		<description>You are right Muhammad Adnan
I think Joggee didnt explain it very well, but it is undestandable

I think:
Session(&quot;A&quot;) = nothing &#039;Will set the variable to nothing, but the variable will still be in the session
Session.Remove(&quot;A&quot;) &#039; Will remove the variable from the session
Session.Abandon &#039; Will remove all variables from session, and i just wondering if a new session would be regenerated, bt not, i just tryed that, this only removes session variables but does not generate a new sessionid :)</description>
		<content:encoded><![CDATA[<p>You are right Muhammad Adnan<br />
I think Joggee didnt explain it very well, but it is undestandable</p>
<p>I think:<br />
Session(&#8221;A&#8221;) = nothing &#8216;Will set the variable to nothing, but the variable will still be in the session<br />
Session.Remove(&#8221;A&#8221;) &#8216; Will remove the variable from the session<br />
Session.Abandon &#8216; Will remove all variables from session, and i just wondering if a new session would be regenerated, bt not, i just tryed that, this only removes session variables but does not generate a new sessionid <img src='http://blog.joggee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kazelpnf</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-279</link>
		<dc:creator>Kazelpnf</dc:creator>
		<pubDate>Fri, 19 Sep 2008 10:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-279</guid>
		<description>Hi webmaster!</description>
		<content:encoded><![CDATA[<p>Hi webmaster!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Muhammad Adnan Amanullah</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-231</link>
		<dc:creator>Muhammad Adnan Amanullah</dc:creator>
		<pubDate>Mon, 11 Aug 2008 17:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-231</guid>
		<description>don&#039;t u think Session.Abandon() will destroy all session keys value whereas through Session(”A”) = Nothing we r just getting rid of Session(&quot;A&quot;) SOMEHOW

just trying to share my thought, pls correct me if i m wrong. 

take care, Thanks,</description>
		<content:encoded><![CDATA[<p>don&#8217;t u think Session.Abandon() will destroy all session keys value whereas through Session(”A”) = Nothing we r just getting rid of Session(&#8221;A&#8221;) SOMEHOW</p>
<p>just trying to share my thought, pls correct me if i m wrong. </p>
<p>take care, Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lars Corneliussen</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-111</link>
		<dc:creator>Lars Corneliussen</dc:creator>
		<pubDate>Mon, 19 May 2008 17:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-111</guid>
		<description>Just some more notes. Use these three methods according to what you want to do! Think about it.

1) Session.Remove(&quot;A&quot;) is more correct than Session(&quot;A&quot;) = null&#124;Nothing, and it&#039;s absolutely appropriate when you want to just clean up what you&#039;ve put in there.

2) Session.Abandon() removes ALL session values. 

3) FormsAuthentication.SignOut() removes the authentication ticket and redirects to the login page.</description>
		<content:encoded><![CDATA[<p>Just some more notes. Use these three methods according to what you want to do! Think about it.</p>
<p>1) Session.Remove(&#8221;A&#8221;) is more correct than Session(&#8221;A&#8221;) = null|Nothing, and it&#8217;s absolutely appropriate when you want to just clean up what you&#8217;ve put in there.</p>
<p>2) Session.Abandon() removes ALL session values. </p>
<p>3) FormsAuthentication.SignOut() removes the authentication ticket and redirects to the login page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohaib Ahmad</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-91</link>
		<dc:creator>Sohaib Ahmad</dc:creator>
		<pubDate>Wed, 16 Apr 2008 11:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-91</guid>
		<description>Wounderfull all most all the developers do so. Before readind this artical i also use same like
 Session(”A”) = Nothing
Also FormsAuthentication.SignOut() is new thing for me.
Thanks</description>
		<content:encoded><![CDATA[<p>Wounderfull all most all the developers do so. Before readind this artical i also use same like<br />
 Session(”A”) = Nothing<br />
Also FormsAuthentication.SignOut() is new thing for me.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naveed Mazhar</title>
		<link>http://blog.joggee.com/?p=143&#038;cpage=1#comment-90</link>
		<dc:creator>Naveed Mazhar</dc:creator>
		<pubDate>Wed, 16 Apr 2008 11:42:47 +0000</pubDate>
		<guid isPermaLink="false">http://codeproject.wordpress.com/?p=166#comment-90</guid>
		<description>Very useful tip. I will definitely use it.</description>
		<content:encoded><![CDATA[<p>Very useful tip. I will definitely use it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
