i have a Windows Forms application, which uses a Webbrowsercontrol to display a dynamically generated Htmlpage. Is there a possibility to interact with the jscode of the page? For example if i have have the following function:
<script type="text/javascript">
function ReturnValue()
{
var output;
output ='test';
return output;
}
</script>
Would there be a possibility to receive "test" in my application (not trough url)?