M
Mr. x
Hello,
I am using aspx.
code like this :
....
<script runat="server">
sub myclick(Sender As Object, E As EventArgs)
response.write("A Test !!!")
end sub
....
<html>
<body>
.....
<asp:table runat="server" onmouseover="mymouseover"
onmouseexit="mymouseexit">
<asp:tablerow>
<asp:tablecell runat="server" onserverclick = "myclick" id = "mytest">
A Test
</asp:tablecell>
</asp:tablerow>
</asp:table>
when I click on the tablecell with id = "mytest", there is no error, but I
never reach the function myclick - Why ?
Thanks
I am using aspx.
code like this :
....
<script runat="server">
sub myclick(Sender As Object, E As EventArgs)
response.write("A Test !!!")
end sub
....
<html>
<body>
.....
<asp:table runat="server" onmouseover="mymouseover"
onmouseexit="mymouseexit">
<asp:tablerow>
<asp:tablecell runat="server" onserverclick = "myclick" id = "mytest">
A Test
</asp:tablecell>
</asp:tablerow>
</asp:table>
when I click on the tablecell with id = "mytest", there is no error, but I
never reach the function myclick - Why ?
Thanks