Click here to Skip to main content
15,896,153 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
XML
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
Posted

hi,

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
 
Share this answer
 
v3
You need to add the code for "Registeration" (or Registration as it is more properly spelled).
See the solutions to your previous post
 
Share this answer
 
Add the following code into your code behind:

C#
protected void Registeration(object sender, System.EventArgs e)
{
        // process registration here
}
 
Share this answer
 
You need to check following function in your .cs page if you don't get it .. just copy following code or double click on your button(in design view)

C#
protected void Registeration(object sender, EventArgs e)
    {

    }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900