Hi
My CGI script working properly in chrome. But not working properly with Internet Explorer.
eg. The button I am creating like
print $co->image_button(-name=>'dir',-value=>'test',-src=>'../../../ic
+ons/dir.gif',-onclick=>"parent.location.href=\'first.cgi\'");
My code first.cgi is like:-
if ($co->param('dir')) {
####If condition
}
else {
print $co->image_button(-name=>'dir',-value=>'test',-src=>'../../../ic
+ons/dir.gif',-onclick=>"parent.location.href=\'first.cgi\'");
####Else condition
}
If I run this script for the first time, else part should run. When I click the above button, this script with if part should run which is happening properly in google chrome.
But, when I run the above script with internet explorer (version 8.0.7600.16385), above script always runs with else part even after clicking the button.