how to Call cs function from html button
        Posted  
        
            by sudha
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by sudha
        
        
        
        Published on 2010-03-31T09:45:16Z
        Indexed on 
            2010/03/31
            9:53 UTC
        
        
        Read the original article
        Hit count: 365
        
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
© Stack Overflow or respective owner