Posted on: 9/10/2014 8:27:21 PM | Views : 311

Hello
I have the following in my Register.aspx.vb page which redirects the user to a 'Successful!' page called success.aspx:
Using Code here End Using Response.Redirect("~/success.aspx", True) End Sub End Class success.aspx looks like this:
<div class="center">You have successfully registered</div> If I now wanted to say 'JohnSmith, You have successfully registered' I understand from a Microsoft tutorial here:
http://msdn.microsoft.com/en-us/library/vstudio/6c3yckfw(v=vs.100).aspx
that I would need to replace the  Response.Redirect("~/success.aspx", True) I currently have with something like the following in my Register.aspx.vb file:
Response.Redirect(&q ...

Go to the complete details ...