Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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-(

share|improve this question

1 Answer

up vote 1 down vote accepted

On your Default.aspx.cs file, you can get the value of the session like this:

txt_loggedas.Text = Session["user"].ToString();
share|improve this answer
Ive managed to find the answer but I couldn't post it because is a limit time to post answers to ypur questions any way I switched to label and my code looks like this : protected void Page_Load(object sender, EventArgs e) { if (Session["user"] == null) { Response.Redirect("Default.aspx"); } else { lbl_logged.Text = (string)Session["user"].ToString(); } } – not_a_programmer_yet Feb 2 at 8:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.