How to put a .html script in my symbian application for showing ADS etc in the app.
Ok, I have to find a way to combine the script inside the html into my symbian ,c++ code
I have the following in the saved page which is a .html script
<script>
var APP_NAME = "TheAppID"; //Mandatory
var PORTAL = 559; //Mandatory - should be one of the portal's list
var CATEGORY = "";
var KEYWORDS = "";
var IMPRESSION_PIXEL = "";
var CLICK_PIXEL = "";
document.write("<script language='javascript' src='http://ad-tag.inner-active.mobi/simpleM2M/RequestTagAd?v=Stag-2.1.0&f=4&aid=" + APP_NAME + "&po=" + PORTAL + "&c=" + CATEGORY + "&k=" + KEYWORDS + "'><\/script>");
</script>




