<script type="text/javascript">
$(document).ready(function () {
$("#aspnetForm img").load(function () {
$(this).width(64);
$(this).height(64);
});
});
</script>
<asp:TemplateField>
<ItemTemplate>
<img alt="" runat="server" class="pic" style="cursor:pointer" src='<%# StripHTML(Eval("cat_img").ToString()) %>' />
</ItemTemplate>
</asp:TemplateField>
Chrome では動作しますが、IE では動作しません。私を助けてください。私の画像は<p> <img src=....>
データベースのhtmlタグです。striphtml メソッドをクリアしました。