J
John
Hi
In my source page I am using;
Context.Items("Msg") = Msg
Response.Redirect("Destination_Page.aspx")
In my destination page in Page_Load event I am using;
lblMsg.Text = CType(Context.Items("Msg"), String)
But the value does not get to the destination page. Is there a more
reliable way to pass a string between pages?
Thanks
Regards
In my source page I am using;
Context.Items("Msg") = Msg
Response.Redirect("Destination_Page.aspx")
In my destination page in Page_Load event I am using;
lblMsg.Text = CType(Context.Items("Msg"), String)
But the value does not get to the destination page. Is there a more
reliable way to pass a string between pages?
Thanks
Regards