How do I tell an ASP.Net control to call a javascript function when an event occurs? If I try and do it the same way as I would with a normal HTML control it tells me my javascript function is not part of my ASP page.
'helloworld()' is not a member of 'ASP.CreateEvent_aspx'.
The tag is...
<asp:RadioButton id="RadioButton1" runat="server"
OnCheckedChanged="hellowor
ld()"></as
p:RadioBut
ton>
My helloword function gets called OK from an HTML tag, so what's differnt with ASP.Net?
Start Free Trial