I’m trying to add two fields using the submit button. In the code behind, I have…
protected void MySubmitButton_Click(object sender, EventArgs e) 
    {      
        if(CurrentWorkflowActionName == "INITIATE_REQUEST"){
            int total = Int32.Parse(ExtFieldTripRequest_MaleStudentsEligible.Text.ToString()) + Int32.Parse(ExtFieldTripRequest_FemaleStudentsEligible.Text.ToString());
            ExtFieldTripRequest_NoStudentsEligible.Text = total.ToString();
        }
        
    }
but the ExtFieldTripRequest_NoStudentsEligible.Text field remains blank. Can you tell me if you code is in error? I’m just not sure why this method is not firing.