Hi,
I am working on database part using ajax,javascript and asp.
I'm getting Object Expected error at line 6.
Here is the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<script src="selectCustomer.js" language="javascript" type="text/javascript"></script>
<form action="javascript: void 0;" method="post" name="form1" id="form1" >
select a customer:
<select name="customers" onchange="showCustomer()">
<option value="ALFKI">Alfreds Futterkiste
<option value="NORTS ">North/South
<option value="WOLZA">Wolski Zajazd
</select>
</form>
<p>
<div id="txtHint" ><b> customer info will be listed here</b></div>
</p>
</body>
</html>
i tried but didnt get any results.
Plz help me regarding this