微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net – Handles子句需要在包含类型或其基类型之一中定义的WithEvents变量

我收到了错误
Handles clause requires a WithEvents variable defined in the containing type or one of its base types.

在以下代码中..

Public Sub selCurrentManuf_SelectedindexChanged(ByVal sender As System.Object,ByVal e As System.EventArgs) _
    Handles selCurrentManuf.SelectedindexChanged

    End Sub

随附的下拉列表如下……

<asp:DropDownList  
   OnSelectedindexChanged="selCurrentManuf_SelectedindexChanged" 
   selectedvalue='<%#Container.DataItem("c1_manufidcurrent")%>' 
    ID="selCurrentManuf" 
    Runat="Server" 
    DataTextField="c4_Desc" 
    DataValueField="c4_manufid"
    DataSource="<%# GetCurrentManuf() %>" 
    autopostback="true" 
 ></asp:DropDownList>

解决方法

升级页面时遇到此问题.问题在于Inherits属性@Page指令有错误的命名空间.

>更正Inherits属性名称空间>删除设计器文件中的命名空间或在设计器代码中与其匹配

原文地址:https://www.jb51.cc/aspnet/248505.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐