从CS3.0中的asp.net页面获取变量值
我有一个已发布的 Flash 应用程序(CS3.0),我获得了 Flash HTML 并将其放入 asp.net 页面中。 asp.net页面包含一个公共变量,该变量在页面加载时设置我需要在flash代码中获取此变量值以基于此变量执行一些操作,那么我如何在CS3中获取此变量值.0 应用程序驻留在页面中。
希望我的问题很清楚,如果需要任何插图就可以确定它,我会进一步解释它。
提前致谢
I have a flash application (CS3.0) that is published and i got the flash HTML and put it inside asp.net page.
The asp.net page include a public variable which is set in the loading of the page i need to get this variaable value in the code of the flash to do some operations based upon this variable so how can i get this variable value in the CS3.0 aplpication which resides in the page.
Hope that my question is clear if any illustrations needed just determine it and i will explain it more.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在您的 aspx 页面上执行类似以下代码的操作,特别注意以下行:
'FlashVars', 'PublicProperty=<% Response.Write( PublicProperty ) %>'
You could do something like the following code below on your aspx page, note inparticular the following line:
'FlashVars', 'PublicProperty=<% Response.Write( PublicProperty ) %>'