scenario is I am reading an xml file and i need to show how one would display links as links, i should be able to do this in c# or using xslt and javascript: here is where i am having a problem with the javascript:
Code:
\\Reading in Layer
var strTemp = document.all["kyle"].innerHTML;
var TheLink="http:"; \\some link would be generated here
MakeLinksLinks = strTemp.replace(TheLink, "<a href=\'"+TheLink+"\'>"+TheLink+"</a>");
var TheVal=eval(strTemp);
alert(TheVal);
any pointers or references would be much appreciated.