我正在使用.aspx页面中的html按钮。但是我想使用.cs页面上的button_click事件。。
我将html按钮添加为:
<button id="button1" runat="server" onclick="Submit_Click">
Send
</button>
在.cs页面上,我是usng:
protected void Submit_Click(object source, EventArgs e)
{
MessageBox.Show("ggg");
}
i don t want to use asp button .. and this is not calling the event from .cs page..
如何做到这一点。。