protected void SelContent_B_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(Request.Form["GeneralID"]))
     {
         int          gid   = Convert.ToInt32(Request.Form["GeneralID"]);
         M_CommonData model = contentBll.SelReturnModel(gid);
         HtmlContent_Hid.Value = contentBll.GetHtmlContent(gid);
         function.Script(this, "SetContent('" + model.Title + "','" + model.GeneralID + "');");
     }
 }