I came across a situation recently in which I was working with Silverlight and the navigation property of a HyperLink Button required a URI instead of a URL.
To do this, it’s very simple:
C# string myUrl = "http://AllThingsDotNet.net"; Uri myUri = new Uri(myUrl);
VB.Net: Dim myUrl As String = "http://AllThingsDotNet.net" Dim myUri As Uri = New Uri(myUrl)
All Things DotNet Discussed – Winforms/ASP.Net/SharePoint/WPF
Leave a reply
You must be logged in to post a comment.