pa1 modi
Guest
|
how to catch the handle or pointer of the request generated by IE using c++ ?? |
|
Eugene Astafiev
Guest
|
Hi Pavan,
Sorry, but I don't quite understand you.
What handler or pointer do you want to catch? Could you please describe it in details? |
|
pa1 modi
Guest
|
okie Eugene,
for example, when i want to Add headers in particular request of IE that time i have to create Instance of
HttpWebRequest.
HttpWebRequest^ request = (HttpWebRequest^)( WebRequest::Create(url) );
request->Method = "GET";
request->Headers->Add("MyCustomHeaderValue", "test");
for every request its create a new instance and cancle old one.
thats why i need pointer or handler of request of IE..so dont need to create new instance and i can directly
use Request object... |
|
Andrei Smolin
Add-in Express team
Posts: 18662
Joined: 2006-05-11
|
Hi Pavan,
I don't see how your question relates to developing IE add-ons. I assume that you talk about intercepting requests on the server side. Am I correct? If yes, then this definitely out of scope of Add-in Express services because ASP.NET works on the server side while IE (and an add-on loaded by IE) works on the client side.
Thank you for your understanding.
Andrei Smolin
Add-in Express Team Leader |
|