摘要: function TextInfo(element, info) { this._textBox = element; this.text = info; this._textBox.value = info; this._textBox.onblur = new createDelegate(this, this._onblur); this._textBox.onfocus = new createDelegate(this, this._onfocus); }TextInfo.prototype = { _onblur: function () { ... 阅读全文
posted @ 2012-12-23 17:13 csdnbbs 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 问题: <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <%= DateTime.Now.ToString()%><br /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br /> <asp:Button ID="Butto 阅读全文
posted @ 2012-12-23 13:51 csdnbbs 阅读(179) 评论(0) 推荐(0) 编辑