Posted on: 5/28/2015 5:19:19 PM | Views : 641

Hi All,
I have an hyperlink inside a listview, the url of which should navigate to the routed url that I have mapped in my RouteConfig.vb but it doesn't and I cannot understand why.
The listview I am talking about gets populated as per below:
Private Sub PopulateChildListView() Dim FriendlyContinentName As String = Convert.ToString(Page.RouteData.Values("FriendlyContinentName")) Using con As New SqlConnection(ConfigurationManager.ConnectionStrings("DefaultConnection").ConnectionString) Using cmd As New SqlCommand("SELECT Countries.CountryId, Countries.CountryName, Countries.FriendlyCountryName, Continents.ContinentId, Continents.FriendlyContinentName FROM Countries INNER JOIN Continents ON Continents.ContinentId=Countries.ContinentId WHERE Continents.FriendlyContinentName = '" + FriendlyContinentName + "' ORDER BY Countries.CountryName ASC", con) ...

Go to the complete details ...