Ejemplo n.º 1
0
    public void LoadOrg()
    {
        Org e = bll.GetByID(OrgID);

        if (e == null)
        {
        }
        else
        {
            imgCodabar.ImageUrl = BarcodeBLL.Url4Org(e.ID);
            txtName.Text        = e.Name;

            txtAddress.Text = e.Address;

            if (e.Geo1 != null)
            {
                txtGeo.Text = e.FullGeo;
            }

            txtNote.Text = e.Note;
        }
    }