本文介绍了我在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
推荐答案
protected void Registeration(object sender, System.EventArgs e)
{
// process registration here
}
这篇关于我在238行得到错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!