User-1874149369 posted
Thanks Peter. What I meant by doesn't work is that I would get an exception, couldn't find the target. The default directory was the Controls subfolder, and I was having trouble getting back to the source page.
I tried hardcoding that page in the NavigateURL property in the .ascx file but the best that did was to land me on the page, but all my styles, etc., were lost.
I then poked around at the link you sent, and got Request.Path to work. I now build and assign the NavigateURL value in the control code behind, and after a few misses got that to work perfectly. Thank you!!!
Paul
P.S., code behind below
this
.lnkStep1.NavigateUrl = Request.Path.ToString() +
"#Step1";