i must to a project for school ,i must build an asp.net (4) site and i need to get a value from a session variable and to store it in an textbox or label what ever. I've tried with textbox until now........and i got stuck.
My session variable declare on page Default.aspx:
Session["user"] = username;
My textbox code on Home.aspx page :
<div class="content"><!--D2-->
<form id="form1" runat="server">
<div class="logged"><!--D3-->
<p class="i_am">You are logged in as:<asp:TextBox ID="txt_loggedas" runat="server" ></asp:TextBox>
</p>
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="LogOut">[Log Out]</asp:LinkButton>
I tried answers from this link: how to display a session value in an ASP textbox, but i didn't succeed x-(