Torna al Thread
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Calling javascript</title>
<script type="text/javascript" language="javascript">
function DisplayName(name)
{
this.lbl1.document.writeln("Welcome " + name);
}
</script>
</head>
<body>
<div>
<label id="lbl1"></label>
</div>
</body>
</html>