Beispiel #1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        int idFlight = util.GetIntParam(Request, "id", LogbookEntry.idFlightNew);

        if (idFlight != LogbookEntry.idFlightNew)
        {
            LogbookEntry le = new LogbookEntry();
            le.FlightID = idFlight;
            le.LoadDigitalSig();

            if (le.DigitizedSignature != null && le.DigitizedSignature.Length > 0)
            {
                Response.ContentType = "image/png";
                Response.Clear();
                Response.BinaryWrite(le.DigitizedSignature);
                Response.End();
            }
        }
    }