Question : Link not updating 'Address Bar'

See the attached '.png' files for details of my setup and problem.

I would like to update the 'address bar' of the browser when executing a link from within a nested RadPane. In other words (based on my attached screen shots):  I would like the page resulting from taking the link from 'Dashboard.aspx'  to not load within the RadPane but rather replace the 'Navigation.aspx' page (in the address bar).

Brad
Attachments:

Answer : Link not updating 'Address Bar'

So that would probably mean



1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
public static string FormatLink(string url, string text, string target) {
  string baseURL = ConfigurationManager.AppSettings["BaseURL"];
  string targetString = (target=="")?"":" target=\""+target+"\"";
  return "<a href=\"" + baseURL + "/" + url.TrimStart('/') +"\"" + targetString+">" + text + "</a>";
}


public static string FormatFormRespLink(int repID) {
  string url = "Response/Acceptance.aspx?report=" + repID;  
  string text = "Accept or Re-Assign";
  string target="_top";
  return FormatLink(url, text, target);
}
Random Solutions  
 
programming4us programming4us