I've received a error message "System.Web.UI.UpdatePanel' does not have a public property named 'table'" when trying to use AJAX.NET.
The code:
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<table>
</table>
</ContentTemplate>
</asp:UpdatePanel>
After surf for a while, i found the solution on this issue. We need to put <ContentTemplate> <table> ... </table> </ContentTemplate>
This solve the problem.
5 comments:
Thanks
Thank you very much, saved me big time.
Thanks again. Easy!
What can we do if we have to use a gridView??? please reply soon
thz a lot :)
it is useful in my source code :)
thz again :D
Post a Comment