Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

request.form

Status
Not open for further replies.

bouwob

Programmer
Apr 12, 2006
171
US
I have this url


and then this chunk of code in the page_load event
Code:
            if (Request.Form.Get("messageID") != null)
            {
                this.lblMessageID.Text = Request.Form.Get("messageID").ToString();
                this.pnlUpdateTicket.Visible = true;
            }
            else
                this.pnlUpdateTicket.Visible = false;

problem is that Request.Form.Get("messageID") is always null even with the link above where it should not be.

What is the deal?

any ideas

tia
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top