我在238行得到错误 [英] am getting error in line 238

查看:53
本文介绍了我在238行得到错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Server Error in '/' Application.

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: CS0123: No overload for 'Registeration' matches delegate 'System.EventHandler'

Source Error:


Line 236:        <tr>
Line 237:            <td class="style2">
Line 238:                <asp:Button ID="Register" runat="server" Text="Register"

Line 239:                    onclick="Registeration" />
Line 240:            </td>

Source File: d:\firmus21\FirmusJobportal\FirmusJobportal\StudentDetails.aspx    Line: 238

推荐答案

hi,



检查您的cs页面是否有onclick =Registeration"按钮事件。你在设计页面中提到过。如果您想火,此事件会在您的cs文件中创建此事件,或从您的设计编码中删除以下行。



onclick =Registeration





问候,

Prakash.T


check your cs page having "onclick="Registeration"" event for button. you have mentioned in design page. If you want fire this event create this event in your cs file or remove the following line from your design coding.

onclick="Registeration"


regards,
Prakash.T


您需要添加代码注册(或注册,因为拼写更准确)。

查看上一篇文章的解决方案
You need to add the code for "Registeration" (or Registration as it is more properly spelled).
See the solutions to your previous post


将以下代码添加到您的代码中:



Add the following code into your code behind:

protected void Registeration(object sender, System.EventArgs e)
{
        // process registration here
}


这篇关于我在238行得到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆