I have a key, which is in XML web resource. Now i have to read that key into one of the other java script in html web resource.
Suppose i have key like in XML webresource
<!-- Key for Partner Source URL-->
<add key="Partner site URL" value="http://www.google.com" encrypted="false"/>
Now i have a Html web resource here i need to read the XML key
<html>
<head></head>
<body onload="OpenPartnerSiteUrl()">
<script>
function OpenPartnerSiteUrl() {
//Open an url in a new window
window.open("");
}
</script>
</body>
</html>
Thanks
Abhishek
*This post is locked for comments
I have the same question (0)