简体   繁体   中英

How to clear a textbox in asp.net?

I tried TextBox1.Clear but it doesn't work and gives me error.

    protected void Page_Load(object sender, EventArgs e)
    {

        TextBox1.Clear
    }

这样做,

TextBox1.Text = string.Empty;

这可能是一种方法:

TextBox1.Text = string.Empty;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM