Page 1 of 1

extract table to txt file to client from web (with winform)

PostPosted: Mon Jan 29, 2018 9:05 am
by valoni
is there sample how to save table rows from web to client dedicated path of client "via webfrom chromium" in the way
foreach(row ....)
{
......
}

Re: extract table to txt file to client from web (with winfo

PostPosted: Mon Jan 29, 2018 4:00 pm
by Czarek
Use javascript to extract data from a table and then communicate with native code using javascript bindings, see: https://bitbucket.org/chromiumembedded/ ... gration.md

Alternatively there is DOM API that is available in the Renderer process.