//创建活动
        protected void ButtonCreate_Click(object sender, EventArgs e)
        {
            string SocName      = TextBoxName.Text; //主题
            string SocSize      = TextBoxSize.Text; //时间地点
            string Sk           = TextBoxSk.Text;   // 内容
            string participants = TextBox1.Text;    //参与人员

            string[] array = { SocName, SocSize, Sk, participants, Session["pictureStyleURL"].ToString(), Session["username"].ToString(), Session["hdfkiuyr"].ToString() };
            userinfo user  = new userinfo();

            if (!(user.InsertStyleSoc(array)))
            {
                this.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('失败,已有该活动!');</script>");
            }
            else
            {
                this.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>alert('创建成功!');window.location.href='SocialStyle.aspx'</script>");
                //Response.Write("<script>alert('创建成功!');window.location.href='indexTrue.aspx'</script>");
            }
        }