I wan to tranfer the value barcode from abc.aspx to cde.aspx and display in other page
this is the code from abc.aspx
<asp:HyperLink ID="hlBarcode" runat="server" NavigateUrl='<%# "~/SearchStock.aspx?BC=" + Eval("Barcode")%>' >
this is the code from cde.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
if (Request.QueryString["Barcode"] != null)
txtBarcode.Text = Request.QueryString["Barcode"];
}
but my txtBarcode.Text cannot get anything...how to solved it?