1.I wanted to disable cookie in my IE browser (version 6.0.2600). I set the slider bar option to "Block All Cookie" at browser menu Tools->Internet Option ->Privacy, but still I can able read and write cookie using JavaScript and ASP . I would like to know if is there any option available where I can disable the cookie in IE browser.
2.I get a "object is not a function" error whenever i try to submit a form like document.form,submit() in netscape 6.0 , but works fine in Netscape 7.0 and all other IE versions.
3.I want to disable the radio buttons and if i have checked any radio button, on disabling they should still reamin disabled.I have sample code which works fine in Netscape 6.0
but does not work for Netscape 7.0
Here is the sample code.
<html>
<head>
<script>
function tt()
{
//document.frmlower.r1[0].disabled=true;
//document.frmlower.r1[1].disabled=true;
document.getElementById("ra1").disabled=true;
document.getElementById("ra2").disabled=true;
}
</script>
</head>
<body>
<form name="frmlower">
<input type="text" value=http://www.webdeveloper.com/forum/archive/index.php/"from2"> <input type="button" name="dd" value="Submit" onclick="tt();">
<input type="radio" name="r1" id="ra1" value="radio2" checked> <input type="radio" name="r1" id="ra2" VALUE="Radio1">
</form>
</body>
</html>
2.I get a "object is not a function" error whenever i try to submit a form like document.form,submit() in netscape 6.0 , but works fine in Netscape 7.0 and all other IE versions.
3.I want to disable the radio buttons and if i have checked any radio button, on disabling they should still reamin disabled.I have sample code which works fine in Netscape 6.0
but does not work for Netscape 7.0
Here is the sample code.
<html>
<head>
<script>
function tt()
{
//document.frmlower.r1[0].disabled=true;
//document.frmlower.r1[1].disabled=true;
document.getElementById("ra1").disabled=true;
document.getElementById("ra2").disabled=true;
}
</script>
</head>
<body>
<form name="frmlower">
<input type="text" value=http://www.webdeveloper.com/forum/archive/index.php/"from2"> <input type="button" name="dd" value="Submit" onclick="tt();">
<input type="radio" name="r1" id="ra1" value="radio2" checked> <input type="radio" name="r1" id="ra2" VALUE="Radio1">
</form>
</body>
</html>