I have this url
and then this chunk of code in the page_load event
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
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