On load event not firing (1 Viewer)

wan2fly99

Registered User.
Local time
Yesterday, 23:03
Joined
Feb 7, 2005
Messages
53
Created a web page using asp.
I have included a onload event on the body statement. It works fine

As soon as I add a include statement in the body of the html that event does not fire up any more

Don't understand

Here is the code If anybody can help I would really appreciate it

function setupFields() {

alert("In onload event now");
frmSendSMS.telefono.focus();
frmSendSMS.clientNo.blur();
frmSendSMS.clientNo.disabled=true;
return true;
}

<body bgcolor="#F2F2F2" onload="setupFields()">
<div align="center">
<form name="frmSendSMS" method="post" action="MassSMS.asp" onsubmit="return btnSend();">
<table width="800px">
<!--#include file="../menu/applet1.asp"-->
<tr><td style="background-image: url('../../images/down1.gif'); background-repeat: repeat-x" height="20"></td></tr>
<tr><td>
<br />
 

Users who are viewing this thread

Top Bottom