Either way it opens in a new window:
'loop through continents to fill list barFor x = 0 To dsLocations.Locations.Rows.Count - 1locID = Trim(dsLocations.Locations.Rows(x).Item("locID"))locDesc = Trim(dsLocations.Locations.Rows(x).Item("locDesc"))Dim pn As New TreeNodepn.Text = locDescpn.ToolTip = locDescpn.Expanded = Falsectr += 1
'get countries for locationtaMemberCountries.FillByLoc(dsMemberCountries.MemberCountries, locID)
'loop through countries to fill continent groupFor y = 0 To dsMemberCountries.MemberCountries.Rows.Count - 1mcID = dsMemberCountries.MemberCountries.Rows(y).Item("ID")mcName = Trim(dsMemberCountries.MemberCountries.Rows(y).Item("countryName"))Dim cn As New TreeNodecn.NavigateUrl = "http://test.cheerunion.org/page.aspx?id=M&mc=" & mcIDcn.Text = mcNamecn.ToolTip = mcNamecn.Target = "_Self"'add country tree nodeTreeView1.Nodes(ctr - 1).ChildNodes.Add(cn)
NextNext
Hi bpreston,
You can add following tag to the <head> of page:
<base target="_self" />
Hope this help