Hi!
The GridLoaders Project contains a Utilities class which constructs URLs. I found out that there is a problem with a path not being the root of the webserver (because you are missing a leading ~). The following code fixs that problem:
public static string ConstructUrl(string controlKey, string pageName) { return string.Format("~/Index.aspx?{0}={1}", controlKey, pageName); } public static string ConstructUrl(params string[] args) { string theUrl = "~/Index.aspx?"; foreach (string parameter in args) { theUrl = theUrl + parameter; } return theUrl; }
Sven
Regards, Scott Schecter EntitySpaces | Blog | Twitter