Пример #1
0
        protected void uiGridViewHistory_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                DataRowView row = (DataRowView)e.Row.DataItem;

                Label lblfrom = (Label)e.Row.FindControl("uiLabelFrom");
                Label lblto = (Label)e.Row.FindControl("uiLabelTo");
                Label lblstatus = (Label)e.Row.FindControl("uiLabelStatus");

                AirPort airport = new AirPort();
                airport.LoadByPrimaryKey(Convert.ToInt32(row["From_AirportID"].ToString()));
                lblfrom.Text = airport.IATACode;

                airport.LoadByPrimaryKey(Convert.ToInt32(row["To_AirportID"].ToString()));
                lblto.Text = airport.IATACode;

                TicketStatus Status = new TicketStatus();
                if (!string.IsNullOrEmpty(row["TicketStatusID"].ToString()))
                {
                    Status.LoadByPrimaryKey(Convert.ToInt32(row["TicketStatusID"].ToString()));
                    if (Session["CurrentCulture"].ToString() == "ar-EG")
                        lblstatus.Text = Status.ArName;
                    else
                        lblstatus.Text = Status.EnName;
                }
            }
        }