I need to pass an url from asp.net load_page to flowplayer javascript function here: http://flowplayer.org/plugins/streaming/rtmp.html
How to do that ?
I need to pass an url from asp.net load_page to flowplayer javascript function here: http://flowplayer.org/plugins/streaming/rtmp.html
How to do that ?
You can pass a value from ASP.NET to javascript like this:
In your page's code-behind create a property:
protected string MyValue { get { return "my value"; } }
In the markup, assign the value to a javascript variable:
<script>
var myValue = "<%= MyValue %>";
...
</script>
Now you can use this value in javascript.