i am using a video element of html5 to support the video in different browser as
<video id="ss" controls="controls" tabindex="5" class="video-js vjs-default-skin" data-setup="{}" poster="my_video_poster.png">
<source src="Videos/2.webm" type='"video/webm" codecs="vp8, vorbis"' >
<source src="Videos/2.ogv" type='"video/ogv" codecs="theora, speex"'>
<source src="Videos/2.mp4" type="video/mp4">
Your browser does not support the <code>video</code> element.
</video>
i am require to set a SRC of video at the click of the button.
i am having a problem of how to set a Video src at the run time in asp.net. thanks for any assistance.
1 Answer