I am using HtmlAgilityPack and it seems I cannot set the value of the text in a textarea in the same way as an input field:
var node = doc.DocumentNode.SelectSingleNode("//textarea");
if (node != null)
{
node.SetAttributeValue("value", record.Data);
}
Does anyone know how this can be done?