Hi
I have below code . I want video should run in same browser session. There r 10 videos . it gets opened in 10 different chrome session.
protected void Page_Load(object sender, EventArgs e)
{
BindData();
for (int i = 0; i <= 10; i++)
{
RunVideo("htps://youtu.be/f7V5vy5-EU?loop=1");
}
}
public static void RunVideo(string videolink)
{
Process.Start(@"C:\Program Files\Google\Chrome\Application\chrome.exe",
videolink);
}
Thanks
Ramco RamcoPosted Jan 5, 2023, 6:34 AM
10 different tabs. I want only in 1 tab. Once video should get complete , next should open in same window
Thanks
Sachin SinghPosted Jan 5, 2023, 6:21 AM
what do you mean by session? 10 different instances of chrome? or different tabs?