if (TextBox1.Text = "")
        {
            TextBox1.Text = Qing;
        }
        else
        {
            Response.Write(TextBox1.Text);        }错误 1 无法将类型“string”隐式转换为“bool”就是if (TextBox1.Text = "")这里,应该怎么写才对?我以前是用VB的