How can i use Link/Button webpart in selected item transformation? I need to navigate to new page and new url on clicking this button
Why use the webpart when you can simply create a link using <a href="/GoToHere.aspx">Your Link</a>. If you need to make it dynamic then use something like <a href="/GoToHere.aspx?id=<%# Eval("Id") %>">Your Link</a>
<a href="/GoToHere.aspx">Your Link</a>
<a href="/GoToHere.aspx?id=<%# Eval("Id") %>">Your Link</a>
Please, sign in to be able to submit a new answer.