本文介绍了发送回发后如何不更新嵌入式Silverlight应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在一个页面中有一个网格和一个Silverlight应用程序,我想要实现的是当用户按下按钮时,网格被更新,但是只有网格,
而不是旁边的Silverlight应用程序.它不应该在下面这样写吗?
可以发现该按钮触发了动作,但是(网格和Silverlight)都已更新.该站点是从其他站点继承而来的,并且未进行更新,因此我认为它可以部分起作用...或者我是否缺少诸如-使用div,使用面板等...?

I have a grid and a silverlight application in one page, what I''m trying to achieve is when a user press the button, the grid is updated but only the grid,
not the silverlight application which is beside it. Shouldn''t it work how it''s written below?
It''s able to catch that the button fired the action but both (grid and silverlight) are updated. This site is inherited from other site and those are not updated so I assume that it works partly... Or am I missing something like - use div, use panels,...?

<telerik:RadAjaxManagerProxy runat="server" ID="ajaxManagerProxy">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="btTest">
            <UpdatedControls>
              <telerik:AjaxUpdatedControl UpdatePanelRenderMode="Inline" ControlID="Grid" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>

推荐答案


这篇关于发送回发后如何不更新嵌入式Silverlight应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 16:42