I have a button:
<button type="submit" class="contact" onclick="click">
and I have a c# code behind function:
protected void click(object sender, EventArgs e)
{
contact_label.Text = "tester";
}
and there is a label on my page:
<asp:Label id="contact_label"...
The trouble is when I click the button the 'click' function is not being called, why not? How do I remedy it?