I am trying to scrape a site and grab an iTunes promo code. After a bit of experimentation, I found that I could get the code quite easily with a JavaScript console: 
Shortly thereafter, I tried the following with PhantomJS:
var page = require('webpage').create();
page.open('http://www.air1.com/music/free-songs.aspx', function () {
code = page.evaluate(function() {
__doPostBack('ctl00$cphRight1$itunesPromo$lbGetDownloadCode','');
return document.getElementById('ctl00_cphRight1_itunesPromo_lblItunesCodes').innerText;
});
console.log('Code: ' + code);
phantom.exit();
});
It didn't work like I thought it would–code is returned empty.
