Here is the code but it makes a long string with the token displayed. I am just trying to get it under a hyperlink called "Reset Password" so it is neat.
http://www.mycompany.com/account/forgot/reset.aspx?token=<%= UserInfo.PasswordToken %>&email=<%= UserInfo.EmailAddress %>
Here is what I have cobbled together from this forum, but not working.
<asp:HyperLink id="hyperlink1"
NavigateUrl="http://www.mycompany.com/account/forgot/reset.aspx?token="<%= UserInfo.PasswordToken %>&email=<%= UserInfo.EmailAddress %>
Text="Reset Password"
Target="_new"
runat="server"/>
I am thinking I need to declare text first under a variable and then concatinate, but not sure how to do that. I am sure this is dead simple so sorry for dumb question.
Go to the complete details ...