blog html code editor

http://www.simplebits.com/cgi-bin/simplecode.pl

internet explorer 7 and 8 updatepanel rendering error


Örneğin aşağıdaki gibi bir kullanım IE7 ve IE8’de hataya (UpdatePanel’in çalışmamasına) neden oluyor:

<table>
<tr>
<td>
...
</td>
</tr>
<asp:UpdatePanel …>

</asp:UpdatePanel …>
<tr>
<td>
...
</td>
</tr>
</table>

Yukarıdaki örnekte UpdatePanel uygun olmayan yerde bulunuyor. Şu hale çevirince düzeliyor:

<table>
<tr>
<td>
...
</td>
</tr>
</table>
<asp:UpdatePanel …>

</asp:UpdatePanel …>
<table>
<tr>
<td>
...
</td>
</tr>
</table>

search this blog (most likely not here)