I am not certain if this is what you are looking for but,
<asp:button id="OkButton" runat="server" text="Submit" xmlns:asp="#unknown"><br />
ValidationGroup="group3" /></asp:button>
should contain
onclick="OkButton_Click"
within in it
Like so:
<asp:button id="OkButton" runat="server" text="Submit" xmlns:asp="#unknown"><br />
ValidationGroup="group3" onclick="OkButton_Click" /></asp:button>
Then in your aspx.cs file for the page create a function for OkButton_Click
I hope this helps and again this i just a guess.
Also, if this is in an update panel then you would have to add the button's ID to the triggers for the update panel.