
March 3rd, 2009, 12:43 PM
|
 |
Wrox Author
Points: 72,055, Level: 100 |
|
|
Join Date: Jun 2003
Location: Utrecht, Netherlands.
Posts: 17,086
Thanks: 80
Thanked 1,587 Times in 1,563 Posts
|
|
Take a look at this:
</ContentTemplate>
</asp:UpdatePanel>
</div>
You close the <div> *after* the UpdatePanel, while you open it inside in the panel. Simply change it to this:
</div>
</ContentTemplate>
</asp:UpdatePanel>
Hope this helps,
Imar
|