62,268
社区成员
发帖
与我相关
我的任务
分享 protected void Button1_Click1(object sender, EventArgs e)
{
if (TextBox1.Text != "" && TextBox2.Text != "")
{
if (SqlStore.insert_youqing(TextBox1.Text, TextBox2.Text) == 0)
{
GridView1.DataBind();
TextBox1.Text = "";
TextBox2.Text = "";
}
}
}