Repairing the .Net framework installation.

  • Thread starter Thread starter CES
  • Start date Start date
C

CES

All,

I'm experiencing all sort's of problems with IE(possibly the .Net Framework)
that just can't be explained the most recent is when ever I try to apply a
JavaScript function to form attributes like onFocus, onBlur etc, I get an
error "Object doesn't support this action. The script is below. Another
example of a problem is I lost the ability to launch .asp and .aspx pages
from shortcuts.

While I don't have a clue what I'm doing with JavaScript this script is
pretty simple and should work (Netscape and Opera does). I've run a full
virus scan with Norton AV, and a Trojan scan using both Spybot and AdAware,
without detecting any problems. Their fore I'm inclined to think that my
installation of IE or the .Net Framework has been corrupted.

Will System File Checker repair the .Net install as well as IE???
If not is their a way of repairing the .net Fraimwork??
Will uninstaling the framwork and reinstaling it effect Visual Studio??

Thanks
CES



<html>
<head>
<title>Untitled Document</title>

<script language="JavaScript">
function start(){
alert("HELLO");
}

</script>
</head>

<body onload="">
<form name="login" method="post" action="default.aspx?login=True">
<input id="id_test" name="test" maxlength="25" onBlur="start()" />
</form>
</body>
</html>
 
Back
Top