Thanks
Yes, the ID is a part of the link.
In which statement would I need to include this ?
In here ? holdHLnk.NavigateUrl = String.Format("SpecialPage.aspx?ID={0}", ID)
There is a DataNavigateUrlFields to pass in the web page version
<
asp:HyperLinkField NavigateUrl="Tasks_Input.aspx" DataNavigateUrlFields="ID" DataNavigateUrlFormatString="Tasks_Input.aspx?ID={0}" Text="Update" />
but I thought that this was the ID in the String.Format(xxxxx, ID) ?
I did not notice a DataNavigateUrlFields property in the Hyperlink Class
Could you clarify this for me ?
I did find this other message with the same issue except he isn't passing a parm.
<Hyperlink>, OnClick event, and changing the NavigateUri
http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/7d481397-20b9-4864-bc30-877252c75e84/
I think that they are using a link button but mine should work with just the hyperLink control.