I am trying to create a verification email where the user can click on the link but I don't see a way to get the url of the page from code.
I see that
HttpContext.Current.Request.Url.AbsoluteUri;
can be used for the current page but not the verification page that I want to link to.
The code behind for the verification page
protected void Page_Load(object sender, EventArgs e)
{
string confirm = Request.QueryString("confirm")
//check the confirm string and verify user
...
}