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 sure you build the DLL again, and overwrite what you have in your current bin folder.
+1 this post if it helped you!
Leave a Reply
You must be logged in to post a comment.