Author: kspriggs | Posted on: 9/26/2008 7:33:49 PM | Views : 881

I have an application taking data from attributes in an XML file. In particular the url attribute takes the form:-

folderName/fileName.aspx

When the aspGridColumn for hyperlink fields (ie asp:hyperlinkfield DataNavigateUrlFields) is bound to the data it produces a "complete" url which has the form:-

http://host/webName/pageFolder/folderName/fileName.aspx (as read from the IE status bar with asp dev server).

The problem is the "insertion" of the PageFolder name term.

The page containing the grid is in the pageFolder folder.  What I need to do is stop the automatic insertion of the pageFolder in the construction of the full url.

Superficially this seems like a simple "relative address" issue.  However, for other program reasons,  I do not wish to change the specification of the original url attribute.

Using the ...

Go to the complete details ...