Link to home
Start Free TrialLog in
Avatar of ITHelper80
ITHelper80

asked on

Weather.com content to ASP.NET Masterpage

Hello,

When I try to run the below code I get an error message....do i need to do something special if I am running javascript from within a masterpage?
<div class= "sidebarcontainer" >
	<div id="wx_module_4044">
   <a href="http://www.weather.com/weather/local/USTN0094">Cleveland Weather Forecast, TN</a>
</div>
 
<script type="text/javascript">
 
    /* Locations can be edited manually by updating 'wx_locID' below.  Please also update */
    /* the location name and link in the above div (wx_module) to reflect any changes made. */
    var wx_locID = 'USTN0094';
 
    /* If you are editing locations manually and are adding multiple modules to one page, each */
    /* module must have a unique div id.  Please append a unique # to the div above, as well */
    /* as the one referenced just below.  If you use the builder to create individual modules  */
    /* you will not need to edit these parameters. */
    var wx_targetDiv = 'wx_module_4044';
 
    /* Please do not change the configuration value [wx_config] manually - your module */
    /* will no longer function if you do.  If at any time you wish to modify this */
    /* configuration please use the graphical configuration tool found at */
    /* https://registration.weather.com/ursa/wow/step2 */
    var wx_config = 'SZ=300x250*WX=FWC*LNK=SSNL*UNT=F*BGI=golf*MAP=CSC|null*DN=matthew-wilson.com*TIER=0*PID=1114395521*MD5=55983657be43b506bc1d7a5bf660df76';
 
    document.write('<scr' + 'ipt src="' + document.location.protocol + '//wow.weather.com/weather/wow/module/' + wx_locID + '?config=' + wx_config + '&proto=' + document.location.protocol + '&target=' + wx_targetDiv + '"></scr' + 'ipt>');  
</script>
</div>

Open in new window

Avatar of Christian de Bellefeuille
Christian de Bellefeuille
Flag of Canada image

what's the error message?

Here's a link about your confusion... if you google, you will find hundreds like this.
http://www.dotnetcurry.com/ShowArticle.aspx?ID=273&AspxAutoDetectCookieSupport=1
Avatar of ITHelper80
ITHelper80

ASKER

I did try to google for this but couldnt find anything with my particular situation. Ive included a screen shot of the error....looks generic to me. I tried loading the code into a reg aspx page and it works just fine.




error.jpg
ASKER CERTIFIED SOLUTION
Avatar of ITHelper80
ITHelper80

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial