I would like to know the difference between Browser restart / page refresh in IE 7. I am installing Activx control in one of my web page. After Installation , if I close the browser and open it again , I can detect whether Activx is installed or not. But if after installation of Activx if I just refresh the page , I am again prompted to install Activx. What could be the possible solution

Difference between Browser restart / page refresh in IE 7
Somu Thomas
I am detecting ACtivex by the following code in Javascript.
try {
viewer = new ActiveXObject('Adobe.SVGCtl');
}
catch (e){
viewer = null;
}
My Html Page only has single span tag. All Activex Installation code is in Javascript .
Dietz
Tryst