davej
05-15-2008, 04:00 PM
ok this blows I am doing the simplest of web things, using a button to open a url. the url contains get variables http://somesite.com/index.aspx?com=68&idh=1
Here is my button code
<mx:Button click="navigateToURL( new URLRequest("http://ibs.web.boeing.com/index.aspx?com=68&idh=1") )" label="LRTP / IAD" width="200" height="22"/>
it works great if there are no vars in the url or only one but if there is a second var in this case idh=1 it breaks and gives this error: " referrance to entity idh must end with the ; delimiter"
I have also tried the code from http://www.tanguay.info/web/codeExample.php?id=1011 which gives the same error.
any help would be much appriciated.
Here is my button code
<mx:Button click="navigateToURL( new URLRequest("http://ibs.web.boeing.com/index.aspx?com=68&idh=1") )" label="LRTP / IAD" width="200" height="22"/>
it works great if there are no vars in the url or only one but if there is a second var in this case idh=1 it breaks and gives this error: " referrance to entity idh must end with the ; delimiter"
I have also tried the code from http://www.tanguay.info/web/codeExample.php?id=1011 which gives the same error.
any help would be much appriciated.