0

Is there any way to call a javascript function after composite control rendering.I need to place four movable anchors on top of the image control. I am planning to implement the anchors using html Img control. I have already embedded a javascript resource but I cant draw anchors on top of the image control

4

1 に答える 1

0

いいえ、javascript でそれを行うことはできません。ただし、オーバーライド Render を使用してバックグラウンド コードで行うことができます。

このような:

Protected Overrides Sub Render (ByVal writer As System.Web.UI.HtmlTextWriter)

    'you can composite control rendering here.

    MyBase.Render(writer)

サブ終了

于 2012-04-12T10:28:01.770 に答える