I assume I am not the first one having this problem and I am normally pretty good at googling for stuff but in this case I didn't succeed in finding a solution, so I'll post it here.
I have some experience in VB.NET and WinForms, now I am working on an ASP.NET project and I decided to do it in C#, so I can learn more technologies / languages.
I have been creating even handlers for controls by clicking the "Events" lightning bolt on the Properties windows and then double-clicking on the event name. That automatically creates an event procedure, selects it for the handler and opens the code behind with the procedure declaration already there. It has been working fine until now. I just added a FormView object and I am trying to create a handler for the ItemCommand event. As usual, I am double-clicking on "ItemCommand" under Events and it populates it with "fvMembers_ItemCommand" but it does not jump to the code behind and it does not create the actual function. I just tried doing the same thing in a different project that was created by somebody else and it looks like it's working fine there.
Any suggestions?
Thanks!