Hello
When you personalise a page as in 'Hello Fred', don't you use queryString?
I have a Web form that successfully redirects the user to a 'thanks' page using this:
Dim target = String.Format("~/thankyou.aspx?your_name={0}", yourname)
Response.Redirect(String.Format("~/thankyou.aspx?your_name={0}", yourname), True)
But the 'thanks' page which the user is redirected to should display 'thanks Fred' (or whomever) and doesn't. My thankyou.aspx page has this:
<div id="textPosition1">
<asp:Label ID="your_name" runat="server"></asp:Label>
, thank you for your message.<br />
</div>
and in the 'code behind', I have:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim queryString As St ...
Go to the complete details ...