I want to have some HTML files with JavaScript loaded into the web browser control in a winforms (v2.0) application. During execution, I won't have internet access, so JavaScript and HTML forms will be embedded in he resources.resx file.
1) how can I load an HTML document out of the resource (analogous to a file:/// operation, but it isn't being loaded from the file system),
2) how would I declare the JavaScript scripts to be loaded? I.e.,
<script src=resource.jquery.min.js??? ... />
Thanks!