68. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 4/12/2018 7:40:11 PM Eastern Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

68.1 Files compared

# Location File Last Modified
1 AHOBPRe_v4.4.17_bld4.zip\Applications\AHOBPR_UserInterface error.aspx.cs Tue Apr 10 16:46:46 2018 UTC
2 AHOBPRe_v4.4.17_bld4.zip\Applications\AHOBPR_UserInterface error.aspx.cs Thu Apr 12 15:15:07 2018 UTC

68.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 116
Changed 1 2
Inserted 0 0
Removed 0 0

68.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

68.4 Active regular expressions

No regular expressions were active.

68.5 Comparison detail

  1   using Syst em;
  2   using Syst em.Collect ions.Gener ic;
  3   using Syst em.Linq;
  4   using Syst em.Web;
  5   using Syst em.Web.UI;
  6   using Syst em.Web.UI. WebControl s;
  7  
  8   public par tial class  error :   System.Web .UI.Page
  9   {
  10       protec ted void P age_Load(o bject send er, EventA rgs e)
  11       {
  12           lb l404.Visib le = lbl40 8.Visible  = lbl505.V isible = l bl100.Visi ble = lbl1 01.Visible  = LabelIn properQuer yString.Vi sible = lb lError.Vis ible = fal se;
  13  
  14           st ring query String = s tring.Empt y;
  15           if  (this.Req uest != nu ll && this .Request.Q ueryString ["eid"] !=  null)
  16                queryStr ing = this .Request.Q ueryString ["eid"].To String();
  17  
  18           if  (queryStr ing == "40 4")
  19                lbl404.V isible = t rue;
  20           el se if (que ryString = = "408")
  21                lbl408.V isible = t rue;
  22           el se if (que ryString = = "505")
  23                lbl505.V isible = t rue;
  24           el se if (que ryString = = "100")
  25                lbl100.V isible = t rue;
  26           el se if (que ryString = = "101")
  27                lbl101.V isible = t rue;
  28           el se if (que ryString = = "qs")
  29                LabelInp roperQuery String.Vis ible = tru e;
  30           el se
  31                lblError .Visible =  true;
  32  
  33             string con tactText =  "Email  PII                    if you exp erience an y issues w ith the AH OBPR Clini cal Portal  applicati on.";
  34  
  35           lb lContact.T ext = cont actText;
  36  
  37           Ex ception la stExceptio n = Server .GetLastEr ror();
  38  
  39           if  (lastExce ption != n ull)
  40           {
  41                Logging. LogErrorMe ssage("Exc eption", " ErrorPage" , lastExce ption.ToSt ring());
  42           }
  43       }
  44  
  45       //publ ic overrid e string T opMenuName ()
  46       //{
  47       //     return str ing.Empty;
  48       //}
  49  
  50       //publ ic overrid e string M enuItemNam e()
  51       //{
  52       //     return str ing.Empty;
  53       //}
  54  
  55       //publ ic overrid e string A ppObjectCo de()
  56       //{
  57       //     return str ing.Empty;
  58       //}
  59   }