Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Pre-processing a html stream...

Status
Not open for further replies.

greaver

Programmer
Apr 29, 2002
31
CA
Hey Guys,

I want to pre-process a html file before displaying it in IE. Should I create a plug-in for that and if so, how do I go about creating a plug-in in C#?

Alternatively, is there a "browser-control" in C# that I can just feed an htlm stream? I recall seeing something like that in VB...


 
There is a way to write your own ISAPI DLL (sortof) - I think it's called HttpModule. IIS forwards incoming requests through a linked chain of these modules.

Chip H.
 
IIS and ISAPI is server side code. He is looking for browser/client side code it sounds like.

As far as i know you can build DLL's that IE will attach. Of course the user has to install your DLL. The only problem with using .NET is that it would require the user to install the .NET Runtime.

>> is there a "browser-control" in C#

IE "is" a browser control so it should be available as any other ActiveX control in C# through COM interop, yes?

If no one can help with direct knowledge of this subject, you can research IE customization techniques at msdn.microsoft.com

-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top