UpdatePanel Repeater ObjectDataSource获取错误

时间:2014-04-22 05:56:40

标签: asp.net ajax updatepanel asprepeater

我开发了一个应用程序,其中我使用了UpdatePanel,Repeater和ObjectDataSource。

问题是当我使用这三个时,我收到的错误就像 “Sys.WebForms.PageRequestManagerServerErrorException:调用目标已抛出异常。”

问题仅在IE8中发生而在本地不合适我的意思是我在IE8中的本地机器它工作正常但是当我在IIS上托管应用程序时,IE8创建了一个概念,将所有浏览器的所有内容都正常工作。< /强>

下面提到的代码

<asp:HiddenField runat="server" ID="hdnKey" Value="mainAlt" />

        <qfx:label runat="server" ID="Label1" CssClass="subHeading" Text="term_Shares"></qfx:label>
        <asp:Repeater ID="rptShareTypeList"  runat="server">
            <HeaderTemplate>
            </HeaderTemplate>
            <ItemTemplate>
                <div class="shareItem">
                <span class="shareItemButton"></span>
                <span class="shareItemLabel">
                <%#IRAppMgr.Translate(Convert.ToString(Eval("title"))) %>
                <input style="display: none" class="ShareTypeCheckBox" type="checkbox" name='<%#  Eval("key")  %>' value="<%#Eval("Code") %>" <%# Eval("checked12") %> />
                <input class="ShareColor" type="hidden" value="<%#Eval("Color") %>" />
                <input class="ShareCurrency" type="hidden" value="<%#Eval("Currency") %>" />
                </span>
                </div>
            </ItemTemplate>
            <FooterTemplate></FooterTemplate>
        </asp:Repeater>
       <asp:ObjectDataSource ID="SharesTypeDS" runat="server" DataObjectTypeName="Qfx.DataClasses.Config.Option"
            SelectMethod="SelectShareType" TypeName="Qfx.Bases.data.DataManager">
            <SelectParameters>
                <asp:ControlParameter ControlID="ClientMarker" Name="appConfig" PropertyName="Config"
                    Type="Object" />
                <asp:ControlParameter ControlID="ClientMarker" Name="client" PropertyName="Client" />
                <asp:Parameter Name="selection" DefaultValue="ShareType" />
            </SelectParameters>
        </asp:ObjectDataSource>

我的InstrumentSelectionBox.ascx控件中的上述代码

在我的Qfx.Bases.data.DataManager类

public List<Option> SelectShareType(object appConfig, string client, string selection, string ShareKey)
    {
        AppConfig config = (AppConfig)appConfig;
        List<Option> Options = null;
        if (config.getSelectionByKey(ShareKey + selection) != null)
            Options = config.getSelectionByKey(ShareKey + selection).Options;
        if (Options != null && Options.Count > 0)
        {
            foreach (Option option in Options)
            {
                if (option.Currency == null && IRAppManager.Manager != null)
                {
                    DataClasses.Share.Instrument inst = IRAppManager.Manager.GetInstrument(option.Key);
                    option.Currency = (inst != null) ? IRAppManager.Manager.Translate(inst.Currency) : "";
                }
                if (option.VolumeDivisor == null || option.VolumeDivisor.Trim() == string.Empty)
                    option.VolumeDivisor = option.VolumeValue;
                option.Code = (config.GetDataSourceByKey(option.Key) != null) ? config.GetDataSourceByKey(option.Key).Code : "";
                if (option.Code != string.Empty)
                {
                    option.TimeStamp = GetTimeStampDetail(option.Code);
                }
            }
        }
        return (config.getSelectionByKey(ShareKey + selection) != null) ? config.getSelectionByKey(ShareKey + selection).Options : new List<Option>();
    }

我在Updatepanel中使用过它

<asp:UpdatePanel ID="upTab" runat="server">
                <ContentTemplate>
                    <uc:InstrumentSelectionBoxrunat="server" ID="UTCInstrumentSelectionBox"></uc:InstrumentSelectionBoxrunat>
                </ContentTemplate>
            </asp:UpdatePanel>

在浏览器控制台中进行一些调试之后,我认为由于ObjectDataSource发生了错误所以我做了什么我已经删除了ObjectDataSource并将转发器绑定为Id然后它在IE8中工作正常。

所以任何人都可以帮助我在IE8中使用ObjectDataSource或我的代码有错误时有任何限制。 你的反应应该高度评价。 感谢

1 个答案:

答案 0 :(得分:1)

ObjectDataSource使用反射来调用函数/方法。在特殊情况下,您的方法可能会给出异常。这是reference thread,请仔细检查您的方法。