Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MoneyMonkey/Pages/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MoneyMonkey/Pages/Transactions.ascx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Pages_Transactions : System.Web.UI.UserControl {
    protected void Page_Load(object sender, EventArgs e) {

    }

    public void AddTransaction() {
        var uc = navBar.Groups[0].FindControl("TransactionsGrid") as UserControls_TransactionsGrid;
        if(uc != null)
            uc.AddTransaction();
    }
}