当前位置: 代码迷 >> ASP.NET >> 急 textbox 连续往里添值
  详细解决方案

急 textbox 连续往里添值

热度:2714   发布时间:2013-02-25 00:00:00.0
急急急 在线等 textbox 连续往里添值
点击按钮  往文本框里添值  不改变以前文本框里的值  在后面继续添加
------解决方案--------------------------------------------------------
js不就一句话么
document.getElementById('id').value +='abcedfg'; 
------解决方案--------------------------------------------------------
txtCode.Text += DateTime.Now.Ticks.ToString();
------解决方案--------------------------------------------------------
protected void btn_add_Click(object sender, EventArgs e)
    {
        this.txt_add.Text += "添加_";
    }

<form id="form1" runat="server">
    <div>
        <asp:Button ID="btn_add" runat="server" onclick="btn_add_Click"  Text="累加" />
        <asp:TextBox ID="txt_add" runat="server" Width="715px"></asp:TextBox>
    </div>
    </form>



这是我能想到的最简单的了,不过没有加上“无刷新”。但是的确实现了,剩下的就看你要在后面继续累加出来的是什么具体的内容了
  相关解决方案