Envoyer des donnees a une page Aspx from C#

Fermé
BOSS212 Messages postés 4 Date d'inscription vendredi 26 octobre 2007 Statut Membre Dernière intervention 14 septembre 2010 - 14 sept. 2010 à 19:45
Bonjour,

je veux envoyer des données (string ...) a partir d'un client c # (console-application) et les recevoir a partir d'une page Aspx , j'ai trouvé un exemple qui fait l'envoi d'un string avec la méthode POST vers une page asp , mais mon problème est la réception des ct chaine de caractères .


voici le code C #



namespace httprequest
{
    class Program
    {
        static void Main(string[] args)
        {
            // Create a request using a URL that can receive a post. 
            WebRequest request = WebRequest.Create("https://www.microsoft.com/fr-fr/ ");
            // Set the Method property of the request to POST.
            request.Method = "POST";
            // Create POST data and convert it to a byte array.
            string postData = "This is a test that posts this string to a Web server.";
            byte[] byteArray = Encoding.UTF8.GetBytes(postData);
            // Set the ContentType property of the WebRequest.
            request.ContentType = "application/x-www-form-urlencoded";
            // Set the ContentLength property of the WebRequest.
            request.ContentLength = byteArray.Length;
            // Get the request stream.
            Stream dataStream = request.GetRequestStream();
            // Write the data to the request stream.
            dataStream.Write(byteArray, 0, byteArray.Length);
            // Close the Stream object.
            dataStream.Close();
            // Get the response.
            WebResponse response = request.GetResponse();
            // Display the status.
            Console.WriteLine(((HttpWebResponse)response).StatusDescription);
            // Get the stream containing content returned by the server.
            dataStream = response.GetResponseStream();
            // Open the stream using a StreamReader for easy access.
            StreamReader reader = new StreamReader(dataStream);
            // Read the content.
            string responseFromServer = reader.ReadToEnd();
            // Display the content.
            Console.WriteLine(responseFromServer);
            // Clean up the streams.
            reader.Close();
            dataStream.Close();
            response.Close();
            Console.Read();
        }

    }
}



merci .