how to Call cs function from html button
- by sudha
Html Button
input id="Button1" type="button" value="button" runat="server"/
.cs file:
public void display()
{
Response.Redirect("default.aspx");
}
How to call the display function which is in .cs file from html button click