Я хочу чтобы пользователь в программе писал id и ему открывалось дело.
Речь идет об этом сайте -
Написал что-то страшное, но почему то не работает. в чем проблема?
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
using System.Net.Http;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_MouseClick(object sender, MouseEventArgs e)
{
Dictionary<string, string> Params = new Dictionary<string, string>()
{
{ "CaseNumbers", "" },
{ "Count", "25" },
{ "Courts", "" },
{ "DateFrom", null },
{ "DateTo", null },
{ "Judges", "" },
{ "Page", "1" },
{ "Sides", "" },
{ "WithVKSInstances", "false" },
};
string path = @"C:\Users\forgu_000\Desktop\Info.txt";
File.WriteAllText(path,GetRequest("https://kad.arbitr.ru/", Params));
}
private static string GetRequest(string Address, Dictionary<string, string> Params)
{
HttpClient client = new HttpClient();
Uri uri = new Uri(Address);
var content = new FormUrlEncodedContent(Params);
return client.PostAsync(Address, content).Result.ToString();
}
}
}