首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

vs2003事件問題,该怎么处理

2012-03-17 
vs2003事件問題在ide環境中明明有了一事件,可為什么編輯就是不執行?以下為事件且存在InitializeComponent(

vs2003事件問題
在ide環境中明明有了一事件,可為什么編輯就是不執行?
以下為事件且存在InitializeComponent()
private   void   txtaddressbh_TextChanged(object   sender,   System.EventArgs   e)
{      
if(this.txtaddressbh.Text== " ")
  {JScript.Alert( "物料類型編號為空! ");return;}
}
private   void   InitializeComponent()
{        
this.txtwllxbh.TextChanged   +=   new   System.EventHandler(this.txtwllxbh_TextChanged);
this.txtaddressbh.TextChanged   +=   new   System.EventHandler(this.txtaddressbh_TextChanged);
this.BtnRset.Click   +=   new   System.Web.UI.ImageClickEventHandler(this.BtnRset_Click);
this.Load   +=   new   System.EventHandler(this.Page_Load);

}



[解决办法]
没有回发,建议直接使用javascript 处理。
[解决办法]
事件比较难;我老是弄不清楚;
学习...
[解决办法]
如果是希望改变文本筐的值就回发并触发事件,那有没有设置AutoPostBack属性为true

热点排行