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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/aspnet/248505.html

猜你在找的asp.Net相关文章