D
David Elliott
I have an array list that contains a HTML file and supporting graphics / css / etc.
I know that I can write the files to disk and then display them using the
AxSHDocVw.AxWebBrowser class and navigate to the files.
What I am wanting to do is...Bypass the write to the hard drive and
insert it directly into the AxSHDocVw.AxWebBrowser somehow.
I know I can do this to wirte the HTML into the control
mshtml.HTMLDocument doc = (mshtml.HTMLDocument)axWebBrowser1.Document;
doc.body.innerHTML = someHTMLTextString;
But what about the graphics.
How would I get them to display???
Thanks,
Dave
I know that I can write the files to disk and then display them using the
AxSHDocVw.AxWebBrowser class and navigate to the files.
What I am wanting to do is...Bypass the write to the hard drive and
insert it directly into the AxSHDocVw.AxWebBrowser somehow.
I know I can do this to wirte the HTML into the control
mshtml.HTMLDocument doc = (mshtml.HTMLDocument)axWebBrowser1.Document;
doc.body.innerHTML = someHTMLTextString;
But what about the graphics.
How would I get them to display???
Thanks,
Dave