Home > Archive > VC Language > May 2006 > IE Plugins
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
|
| Want to write URL filter, which can take certain actions like
redirecting to some other url for certain URL's etc,
Is IE plugin the correct way to move? If yes, then please suggest me
some pointers.
| |
| Alex Blekhman 2006-05-24, 7:10 pm |
| Anant wrote:
> Want to write URL filter, which can take certain actions
> like redirecting to some other url for certain URL's etc,
> Is IE plugin the correct way to move? If yes, then please
> suggest me some pointers.
It depends what kind of URL is it. If you need to filter
regular URLs then regular BHO (Browser Helper Object) will
suffice.
"Browser Helper Objects: The Browser the Way You Want It"
http://msdn.microsoft.com/library/e...en/html/bho.asp
However, if you whant to handle custom protocol URLs (like
xyz://<something> ), then you will need to implement
Asynchronous Pluggable Protocol handler:
"Asynchronous Pluggable Protocols"
http://msdn.microsoft.com/workshop/...e/pluggable.asp
HTH
Alex
|
|
|
|
|