hi
when i have delpoy my application. it runs fine in system. as my system is connected to interanet . when my friends try to open the application in their browser seems video does not play. but they can see the windows media player coming
what is the promlem
all my video files are abt 10mb in size.
code of .cs
i have custom control created for the media player
and i have added that dll in my application
DataTable dt = new DataTable();
string cid = Request.QueryString["CID"];
bind._path = cid;
dt = bind.GetVideoPath(ref dt);
string path = dt.Rows[0]["Path"].ToString();
Media_Player_Control1.AutoStart = true;
Media_Player_Control1.PlayCount = 1;
Media_Player_Control1.Visible = true;
here path="E:\projects2\videofiles\AVSEQ05.DAT"
Media_Player_Control1.MovieURL = path;
should we do any buffering concept here inorder to display my video files across webany help would be great thank you