OK, this is the exactly what I wanted to understand.
You can pass the Query from any page to Video Player Page and want to Embed file from Query String inside Player.
Do following tasks on Page Load event.
Query Details of Mentioned VideoID from Database. Like URL, Video Title for Page Title etc.
ex.
int VidID="";
if(Request.QueryString!=null)
{
VidID = Convert.ToInt(Request.QueryString.ToString());
//sqlconnection and get details according to VidID;
//then Pass the URL of Video to Player.
//Change the Title of Browser : this.Title = ds.table[0].Rows[0][2].ToString() + " - My Video Community";
}
This code is not coded at VS, so change some basis if some mistakes.
John Bhatt
Glad to Know, Free to Share.....
http://www.johnbhatt.com
Shameer.Ali87, if this helps please login to Mark As Answer. | Alert Moderator