I have a wizard control where each step contains a user control.On each user control (or each step) I have validators, custom validators, required validators, etc. The issue I have is that I am having to write this application in VB.Net, which has been forced on me rather in C#. In the hosting page on its OnLoad event, I usually attach the event by using the usercontrol name.RequiredValidator += usercontrol name.RequiredValidator_Validate. However, in VB.Net I can't seem to do this! I have tried using a C# to VB.net converter, but this didn't work either.So, my question is this, how do you attach events in the hosting page from the user control in VB.Net????