<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VS 2005 Web Application Projects</title><link>http://forums.asp.net/1019.aspx</link><description>General discussions of VS 2005 Web Application Projects</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3269503.aspx</link><pubDate>Wed, 01 Jul 2009 17:40:20 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3269503</guid><dc:creator>forexbob</dc:creator><author>forexbob</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3269503.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3269503</wfw:commentRss><description>&lt;p&gt;Thanks alaa9jo&lt;/p&gt;&lt;p&gt;That was a simple fix. Now I can get on with my other project to see if I can figure it out.&lt;/p&gt;&lt;p&gt;Bob&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3269030.aspx</link><pubDate>Wed, 01 Jul 2009 13:34:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3269030</guid><dc:creator>alaa9jo</dc:creator><author>alaa9jo</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3269030.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3269030</wfw:commentRss><description>&lt;p&gt;for &lt;strong&gt;forexbob&lt;/strong&gt; problem: &lt;/p&gt;
&lt;p&gt;if you add a breakpoint in page_load,you will notice that the debugger wont break at it,which means page_load is not fired at all,that because &lt;u&gt;AutoEventWireUp&lt;/u&gt; is set to &lt;u&gt;false&lt;/u&gt; (you will find it&amp;nbsp;in the source of your page),turning it to true should do it!&lt;/p&gt;
&lt;p&gt;but for you &lt;strong&gt;rienmann&lt;/strong&gt;,I guess you have the same problem as &lt;strong&gt;forexbob&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;If&amp;nbsp;any of you still facing the issue, please let me know&lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3243895.aspx</link><pubDate>Fri, 19 Jun 2009 00:23:46 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3243895</guid><dc:creator>rienmann</dc:creator><author>rienmann</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3243895.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3243895</wfw:commentRss><description>&lt;p&gt;I decided to use PreviousPage instead.&amp;nbsp; I never really understood why I couldn&amp;#39;t create Session variables, unless they were in the global file.&amp;nbsp; And then access them on a page.&amp;nbsp; So i gave up..&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for your help,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I will still have this problem in the future, but for now I am making due...&lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3243167.aspx</link><pubDate>Thu, 18 Jun 2009 17:51:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3243167</guid><dc:creator>forexbob</dc:creator><author>forexbob</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3243167.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3243167</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m having a similar problem with session varibales. I used the code above to test to see if was working and it doesn&amp;#39;t return the name. This is my code:&lt;/p&gt;&lt;p&gt;Code Behind:&lt;/p&gt;&lt;p&gt;Partial Class zzTest&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Inherits System.Web.UI.Page&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Session.Add(&amp;quot;Name&amp;quot;, &amp;quot;Leo&amp;quot;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response.Write(&amp;quot;Name is &amp;quot; + CType(Session(&amp;quot;Name&amp;quot;), String))&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Sub&lt;br /&gt;End Class&lt;/p&gt;&lt;p&gt;zzTest.aspx:&lt;/p&gt;&lt;p&gt;&amp;lt;%@ Page Language=&amp;quot;VB&amp;quot; AutoEventWireup=&amp;quot;false&amp;quot; CodeFile=&amp;quot;zzTest.aspx.vb&amp;quot; Inherits=&amp;quot;zzTest&amp;quot; %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:button ID=&amp;quot;Button1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Show Session value&amp;quot; OnClick=&amp;quot;Button1_Click&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;&lt;p&gt;So if it&amp;#39;s not working, what do I do?&lt;/p&gt;&lt;p&gt;I&amp;#39;m a rookie at this and would normally post in the &amp;quot;Getting Started&amp;quot; group. So very verbose explanations are of great help to me.&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;Bob &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3205082.aspx</link><pubDate>Tue, 02 Jun 2009 15:28:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3205082</guid><dc:creator>RatheeshC</dc:creator><author>RatheeshC</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3205082.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3205082</wfw:commentRss><description>&lt;p&gt;If&amp;nbsp;you are still facing issue, please let me know&lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3201249.aspx</link><pubDate>Mon, 01 Jun 2009 07:42:08 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3201249</guid><dc:creator>Thomas Sun – MSFT</dc:creator><author>Thomas Sun – MSFT</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3201249.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3201249</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Firstly, please make sure the Session.Add method is executed and there are values in TextBoxs. You can insert Breakpoint to validate them during debugging session.&lt;/p&gt;
&lt;p&gt;For testing, you can try to run the following code and&amp;nbsp;see whether you can get value from Session.&lt;/p&gt;
&lt;p&gt;&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; %&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Session.Add(&amp;quot;Name&amp;quot;, &amp;quot;Leo&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Button1_Click(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Response.Write(&amp;quot;Name is &amp;quot;+(string)Session[&amp;quot;Name&amp;quot;]);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href="http://www.w3.org/1999/xhtml"&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot; &amp;gt;&lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:button ID=&amp;quot;Button1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Show Session value&amp;quot; OnClick=&amp;quot;Button1_Click&amp;quot; /&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/p&gt;
&lt;p&gt;Please also make sure the Session is not cleared before you try to access it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I look forward to receiving your test results. &lt;/p&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3189159.aspx</link><pubDate>Tue, 26 May 2009 23:24:19 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3189159</guid><dc:creator>rienmann</dc:creator><author>rienmann</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3189159.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3189159</wfw:commentRss><description>&lt;font size="2"&gt;Session.Add(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;StreetNo&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;, txtStreetNo.Text);&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;Session.Add(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;Street&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;, txtStreet.Text);&lt;/p&gt;Session.Add(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;City&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;, txtCity.Text);&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;Session.Add(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;Province&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;, drpdwnProvince.SelectedValue);&lt;/p&gt;Session.Add(&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;PostalCode&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;, txtPostalCode.Text);&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;And I retrieve it as textbox1.Text = &lt;font size="2"&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;string&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)Session[&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;StreetNo&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;] + &lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot; &amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; +&lt;/p&gt;(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;string&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)Session[&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;Street&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;] + &lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;, &amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; +&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;string&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)Session[&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;City&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;] + &lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;, &amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; +&lt;/p&gt;(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;string&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)Session[&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;Province&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;] + &lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;, &amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; +&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; 
&lt;p&gt;(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;string&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;)Session[&lt;/font&gt;&lt;font color="#a31515" size="2"&gt;&lt;font color="#a31515" size="2"&gt;&amp;quot;PostalCode&amp;quot;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;];&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;br /&gt;These are each on there own pages...&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;However, if I use the Global.asax file&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;font size="2"&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;void&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; Session_Start(&lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font color="#0000ff" size="2"&gt;object&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; sender, &lt;/font&gt;&lt;font color="#2b91af" size="2"&gt;&lt;font color="#2b91af" size="2"&gt;EventArgs&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt; e) &lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Code that runs when a new session is started&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Session.Add(&amp;quot;StreetNo&amp;quot;, &amp;quot;283&amp;quot;);&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Session.Add(&amp;quot;Street&amp;quot;, &amp;quot;bell&amp;quot;);&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Session.Add(&amp;quot;City&amp;quot;, &amp;quot;ottawa&amp;quot;);&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Session.Add(&amp;quot;Province&amp;quot;, &amp;quot;ON&amp;quot;);&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&lt;/font&gt;&lt;font color="#008000" size="2"&gt;&lt;font color="#008000" size="2"&gt;//Session.Add(&amp;quot;PostalCode&amp;quot;, &amp;quot;k1s4j7&amp;quot;); &lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This code when it is not commented out will work when I extract the variables with the exact same code...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any ideas&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;</description></item><item><title>Re: Session variables and Local host</title><link>http://forums.asp.net/thread/3189007.aspx</link><pubDate>Tue, 26 May 2009 21:10:48 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3189007</guid><dc:creator>RatheeshC</dc:creator><author>RatheeshC</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3189007.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3189007</wfw:commentRss><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Please send the code on how you are adding &amp;amp; retrieving the value to session...?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Ratheesh&lt;/p&gt;</description></item><item><title>Session variables and Local host</title><link>http://forums.asp.net/thread/3188908.aspx</link><pubDate>Tue, 26 May 2009 20:11:24 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3188908</guid><dc:creator>rienmann</dc:creator><author>rienmann</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3188908.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1019&amp;PostID=3188908</wfw:commentRss><description>&lt;p&gt;I can&amp;#39;t make session variables stick even in the simplest applications.&amp;nbsp; I have spent a week on this problem, I am so frustrated.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I try to add a session variable on a web page, such as someones name.&amp;nbsp; Then when I try to use it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;ie. (string)Session[&amp;quot;name&amp;quot;], it is always blank.&amp;nbsp; However, if I add it to the global file, I can use it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I want something modifable.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I AM GOING CRAZY. What am I doing wrong?&amp;nbsp; I heard it has something to do with the : in the localhost:32154\project etc....&lt;/p&gt;
&lt;p&gt;Any help will be greatly appreciated..&lt;/p&gt;</description></item></channel></rss>