我想获取一个存储在本地数据库中的视频网址,并将其显示在网络表单中。我的问题是我不知道如何将url从类后面的代码传递给webform。我通过将text属性设置为图像URL来使用标签显示图像,但对于视频则不起作用。
显示如下图像:
string image;
string video;
Advertisement Ad= BusinessLogic.getAd(9);
image = Ad.getImage();
video = Ad.getVideo();
ScriptManager.RegisterStartupScript(this, this.GetType(), Guid.NewGuid().ToString(), "alert('" + image + "');", true);
lblImage.Text = "<img alt='' style=width:150px; height:150px src='" + image + "'/>";
}
如何通过在运行时设置网址来显示视频?
感谢您的时间。
答案 0 :(得分:0)
试试这个:
lblVideo.Text = "<video width=320px height=240px src='" + video+ "'/>";