Here is the code snippet I am currently using:
swfobject.embedSWF("/Content/open-flash-chart.swf",
"my_chart",
"750",
"300",
"9.0.0",
"expressInstall.swf",
{"data-file":"http://localhost:8803/StatisticService/GetOpenFlashChartStatistic_Json?param1=123¶m2=456"}
);
After running this code, I noticed that the request being made only includes the first parameter and ignores all others. The resulting request looks like this:
http://localhost:8803/StatisticService/GetOpenFlashChartStatistic_Json?param1=123
I'm puzzled as to why the other parameters are not being used. I was expecting at least some sort of error in the call, but it seems like the additional parameters are simply being cut off.
If anyone has any insights on why this might be happening, I would greatly appreciate your input. Thank you!