I have a client that is looking into how to configure WebLink to redirect to an internal page when you click on the My WebLink button. Where am I going to be able to make that change?
I have a client that is looking into how to configure WebLink to redirect to an internal page when you click on the My WebLink button. Where am I going to be able to make that change?
There are a few ways you can do this.
1. Edit the codebehind for each of the pages that contain the link for "My WebLink" and change the href from MyWebLink.aspx to your internal page. The various pages are Welcome.aspx.vb, Browse.aspx.vb, DocView.aspx.vb, and Search.aspx.vb. The line you want to change is
PrefsLink.HRef = "MyWebLink.aspx" & OneDBID
Note that you'll need to recompile the application afterwards.
2. The other option is to hide the "My WebLink" link in the aspx pages and create your own link directly in the HTML on the actual aspx pages. The benefit of this is that you won't need to recompile.