protected void Page_Load(object sender, EventArgs e)
        {

            string url = Request.QueryString["url"];
            VideoLiveBLL vib = new VideoLiveBLL();
            if (vib.AddLiveVideoUrl(url) > 0)
            {
                Response.Redirect("ShowAllVideo.aspx");
            }
            else
            {

            }
        }