Hi all,
I am using the documented method for creating HTML hyperlinks within a cell that point to an external web page. It seems to me this method was working fine at one point and then I started having problems, even though I did not change any code.
Here is the code I am using.
'Setting the font of the Link cell to Single Underline
ws0.Cells(intSumRow, 0).Style.Font.Underline = FontUnderlineType.Single
'Adding a hyperlink to Link cell
strWebPath = strRootIP & "/Common/View.aspx"
ws0.Hyperlinks.Add(intSumRow, 0, 1, 1, strWebPath)
The strWebPath variable is resolving correctly as (for example) www.site.com/Common/View.aspx .
However, when I get the XLS document the URL of the link has become:
C:\Documents and Settings\john\Local Settings\Temporary Internet Files\Content.IE5\6SIO7MEY\www.site.com\Common\View.aspx
What on earth is going on here? I didn't ask Aspose Cells to prefix the URL with the location of my temporary internet files. Has anyone seen this problem? What is the fix?
Thanks to all...