<html>
<head>
<meta http-equiv="Content-Type"content="text/html; charset=windows-1254">
<title>JavaScript</title>
</head>
<body bgcolor="#000000" text="#ffffff" vlink="#99FF33" link="#FF99FF">
<script language="javascript">
function ShowValue()
{
document.TextBox.value = "You clicked the button."; //Error on this line
}
</script>
<input type="text" name="TextBox" width="128"><br>
<input type="button" name="Show" value="Show" onClick="ShowValue();">
</body>
</html>
Text control doesn't show the text. Why doesn't it?