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.

Consider the following code:

    public partial class TeacherControlPanel : System.Web.UI.Page
    {
        protected string username = string.Empty;

        protected void Page_Load(object sender, EventArgs e)
        {
            username = (string)Request.QueryString["username"];

            Ice_Web_Portal.BO.Teacher teacher = Ice_Web_Portal.BO.Teacher.GetTeacherByUsername(username);

            if (teacher != null)
            {
                labUsername.Text = username;
                labName.Text = teacher.TeacherName;
                labTeacherCode.Text = teacher.TeacherCode;

                Dept dept = teacher.Department;

                if (dept != null)
                {
                    labDepartment.Text = dept.DeptName;
                }
            }
            else
            {
                //labErrorMessage.Text = "No teacher found";
            }
        }

        protected void btnSendMail_Click(object sender, EventArgs e)
        {
            Response.Redirect(@"~/Teacher/TeacherComposeMail.aspx?username=mahabub" + username);            
        }
}

In this code, when I am declaring 'username' as private, it is initialized to null after subsequent post backs.

Why?

What is the secret?

share|improve this question
1  
Are you saying that the code works as written, but when you change username to a private variable it fails? – Chris Pebble Aug 21 '09 at 19:09
Is it initialized to null or string.Empty? – Martin Aug 21 '09 at 19:10
@Martin, it is null. – BROY Aug 21 '09 at 19:14
@Fredou, Getting a Teacher's data by his unique username. No partial class. – BROY Aug 21 '09 at 19:16
1  
Can you show us the code that doesn't work? Simply switching to private should have no bearing. There shouldn't be any serialization type things going on in the background (which might have explained things). – John Fisher Aug 21 '09 at 19:36
show 5 more comments

3 Answers

up vote 6 down vote accepted

Because ASP.NET is stateless meaning it does not keep it state from post back to postback. Save the user to the viewstate, session, or application to see it on postback to postback.

#region UserName
public string UserName
{
    get
    {
        if (this.ViewState["UserName"] == null)
            return string.Empty;

        return (string)this.ViewState["UserName"];
    }
    set { this.ViewState["UserName"] = value; }
}
#endregion
share|improve this answer
but he's doing username = (string)Request.QueryString["username"]; on every page load. – Kobi Aug 21 '09 at 19:13
@David Basarab, I am not requesting a solution. I am trying to know the difference of effect btwn. protected vs private in this case. – BROY Aug 21 '09 at 19:19

Every time you do any postback, even for "simple" things like button click events, you're working with a new instance of the page class. That's ASP.Net 101.

share|improve this answer
If you redirect to a new page or load a page with a new query string, that is not a postback. If you process a button click event on a page with a query string, that is a postback and the query string is sent with the postback http request. Either way, it's still a new instance of the page class. – Joel Coehoorn Aug 21 '09 at 19:13
I did not find my answer relating protected vs private. – BROY Aug 21 '09 at 19:18

Declaring the username field as private or protected has no bearing on this situation. The only bearing protected/private would have is the accessibility of the variable outside the class or in inherited members.

I believe this is likely a lifecycle problem.

When you navigate to this page for the first time, user name will only have a value if the query string was set for the request. So, "/TeacherControlPanel.aspx" will have a user name with no value, but "/TeacherControlPanel.aspx?username=SomeUserName". In these cases, the field username is only going to have a value if one is set. And if no querystring is set, then when the page processes the button click event, the load will fire, no query string set means that username will be null, which means that the click event will have nothing to append to the redirect string.

So the question is, in your application, what navigation path are you using to get to TeacherControlPanel.aspx?

share|improve this answer
2  
in addition, a protected field will be visible on the page (TeacherControlPanel.aspx, on <% %> statements), while a private field isn't. – Kobi Aug 21 '09 at 22:53

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.