На сайте есть такая форма, которая выглядит как поле ввода с кнопкой поиска:
<form action="en/search/" method="post" name="searchform" id="searchform" style="display:inline;" onsubmit="document.getElementById('searchform').action = document.getElementById('searchform').action + '?s=' + document.getElementById('s').value;">
<div class="search_wrapper">
<input id="s" name="tx_indexedsearch[sword]" type="text" />
<input type="submit" id="go" class="button_search" value="">
<input type="hidden" name="tx_indexedsearch[_sections]" value="0" />
<input type="hidden" name="tx_indexedsearch[pointer]" value="0" />
<input type="hidden" name="tx_indexedsearch[ext]" value="0" />
<input type="hidden" name="tx_indexedsearch[lang]" value="1" />
</div>
нужно из программы на C# отправить запрос к этой форме, задавая только «tx_indexedsearch[sword]», и получить сраницу с результатами. Возможно ли это? Отправить запрос я понимаю как, не понимаю, каким он должен быть. Заранее спасибо, коллеги.