Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         if (Request.QueryString["PortInfoReportId"] != null)
         {
             UserAccessValidation();
             _Vessel_Id        = int.Parse(Request.QueryString["VesselId"].ToString());
             _PortInfoReportId = int.Parse(Request.QueryString["PortInfoReportId"].ToString());
             _Office_Id        = int.Parse(Request.QueryString["OfficeId"].ToString());
             DataSet ds = BLL_OPS_VoyageReports.Get_PortTerminalInfoReport(_Vessel_Id, _PortInfoReportId, _Office_Id);
             BindReport(ds);
         }
     }
 }