HTML Control ASP.Net

<%@ Page Language="C#" %>


protected void Page_Load(object src, EventArgs e)
{
  if (IsPostBack)
  {
    int op1 = int.Parse(_op.Value);
    int op2 = int.Parse(_sum.InnerText);
    _sum.InnerText = (op1+op2).ToString();
  }
}


  
    

ASP.NET accumulator page


    
    Sum:0