Question:
i get html website but it not show anything
Chilkat.Http http = new Chilkat.Http();
bool success;
// Any string unlocks the component for the 1st 30-days.
success = http.UnlockComponent("Anything for 30-day trial");
if (success != true) {
Console.WriteLine(http.LastErrorText);
return;
}
// Send the HTTP GET and return the content in a string.
string html;
html = http.QuickGetStr("https://mmo4me.com/");
Console.WriteLine(html);
It is because that particular server only accepts a single particular cipher suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, and Chilkat does not yet support it.