YUI ASP.Net NavigateURL is not showing the URL entered
September 3, 2010
I recently started using YUIAspNet.dll and the compiled version from 2009, looks like it has a bug or two in it. The problem with the Link button where you set the NavigateURL on is the fact that it is getting the AbsolutePath, and not the AbsoluteUri. AddProperty(“NavigateUrl”, NavigateUrl.AbsolutePath); Change that line to: AddProperty(“NavigateUrl”, NavigateUrl.AbsoluteUri); Make [...]
0