我需要从asp.net load_page传递一个url到这里的flowplayer javascript函数: http://flowplayer.org/plugins/streaming/rtmp.html
怎么做?
答案 0 :(得分:17)
您可以将值从ASP.NET传递到javascript,如下所示:
在您的网页的代码隐藏中创建一个属性:
protected string MyValue { get { return "my value"; } }
在标记中,将值分配给javascript变量:
<script>
var myValue = "<%= MyValue %>";
...
</script>
现在您可以在javascript中使用此值。
答案 1 :(得分:1)
C#
ScriptManager.RegisterStartupScript(this, this.GetType(), "_MyStartupJS", "JavaScriptFunctionNameToCall(param1Value, param2Value); ", true);