回发后占位符丢失数据

我正在将数据库表中的 id 号列表读取到占位符文本框中,但是;如果我做一个按钮点击数据被删除。


 protected void btnSearch_Click(object sender, EventArgs e)

    {


     while (myReader.Read())

        {



            TextBox txt = new TextBox();

            txt.Text = (string)myReader["idNumber"];

            txt.ID = "txt" + i;

            txt.ReadOnly = true;

            ContentPlaceHolder1.Controls.Add(txt);

            ContentPlaceHolder1.Controls.Add(new LiteralControl("     "));


            i++;

        }

}


九州编程
浏览 156回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP