M
Mr. x
Hello,
I have the following aspx code :
<form id = "main_form" runat = "server">
<asp:Table dir = "rtl" runat = "server">
<asp:TableRow>
<asp:TableCell id = "inner_message"> </asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
How can I change the contents of the value of TableCell in the server side
script.
(What should I write in the following :
<script runat="server">
...
inner_message.innerHtml = "some message" ' doesn't work - what
should I put instead.
</script>
)
Thanks
I have the following aspx code :
<form id = "main_form" runat = "server">
<asp:Table dir = "rtl" runat = "server">
<asp:TableRow>
<asp:TableCell id = "inner_message"> </asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
How can I change the contents of the value of TableCell in the server side
script.
(What should I write in the following :
<script runat="server">
...
inner_message.innerHtml = "some message" ' doesn't work - what
should I put instead.
</script>
)
Thanks