我得到了这个错误:
描述:在编译服务此请求所需的资源时发生了错误。请查看以下具体错误详细信息,并适当修改源代码。 编译器错误消息: CS0123:没有“ParentSelect_RowCommand”匹配的重载委托
源错误:
第14行:提交电影点击提交电影第15行:
第16行:第17行:第18行:
下面是我的代码:
namespace Sample
{
public partial class ContentPage : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ParentSelect_RowCommand(object sender, GridViewRowEventHandler e)
{
}
protected void ParentSelect_RowCreated(object sender, GridViewRowEventArgs e)
{
}
}}
发布于 2014-12-20 16:38:59
将参数类型更改为GridViewCommandEventArgs
protected void ParentSelect_RowCommand(object sender, GridViewCommandEventArgs e)
{
}您可以在VisualStudio中检查ObjectInspector中的委托签名,也可以在MSDN上找到它。
https://stackoverflow.com/questions/27582178
复制相似问题