コードビハインド、
オブジェクト参照がオブジェクトのインスタンスに設定されていませんというエラーが表示されます。
protected void GridView1_RowDataBound(オブジェクト送信者、GridViewRowEventArgs e) {
if (e.Row.RowType == DataControlRowType.DataRow)
{
string a = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "item_id")) ;
string b = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "order_id"));
Label lbl = (Label)GridView1.FindControl("Label5");
int sum = int.Parse(a) + int.Parse(b);
lbl.Text += sum.ToString();
}
}