use javascript:<table id="tbl" border="1" onclick="getRowCell()">
 <tr>
  <td>00</td><td>01</td>
 </tr>
 <tr>
  <td>10</td><td>11</td>
 </tr>
</table><script language=javascript>
function getRowCell()
{
  var e = event.srcElement;
  var nRow, nCell;
  if (e.tagName == "TD");
   nCell = e.cellIndex;  var tr = e.parentElement;
  if (tr.tagName == "TR")
    nRow = tr.rowIndex;  alert(nRow + "-" + nCell);
}
</script>if you want to the information on the server side, you need to send the above information back through some hidden controls