I have converted a large sized ASp.Net Web forms project from VB.Net to C# using SharpDevelop and have been able to compile the project after fixing all errors(2100 in my case to be precise).
When I execute the code, I notice that the .aspx page works fine however, none of the events that converted to .cs file from .vb file is getting fired. For ex - Page_Load / btn_click
etc. I have changed the event handler definitions from Private void Function()
to protected void Function()
but still same problems. Can someone advise on how to resolve the same?
Thanks in advance.