Bonjour, j'aimerais savoir comment pourrais-je pour pouvoir exporter les données reçue par les variables présenté ci-dessous sur une page web:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
            FsLongitude lon = new FsLongitude(playerLongitude.Value);
            FsLatitude lat = new FsLatitude(playerLatitude.Value);
            FSUIPCConnection.Process(); // Process the request to FSUIPC
            FSUIPCConnection.Process("AircraftInfo"); // For aicraft type
 
            int ias = (int)((double)airspeed.Value / 128d); // Aircraft speed (KIAS)
            int hdg = (int)((double)(playerHeadingTrue.Value - magVar.Value) * 8.3819E-008d); // Heading
            int alt = (int)(playerAltitude.Value * 3.28084 / (65536d * 65536d)); // Altitude (feet)
            string acType = aircraftType.Value.ToString(); // Aircraft type ex.: Jetranger
            int engType = (int)engineType.Value; // Engine type. Helicopters are usually type 3 but there are some exceptions (like the default Robinson)
En vous remercient de votre compréhension !