Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: error messages on Admin homepage

  1. #1
    jwallwork is offline Member
    Join Date
    Sep 2008
    Posts
    38

    Default error messages on Admin homepage

    In version 9.0.13 (VB version), I'm getting the following message for two sections of the admin home page.

    Exception=Object reference not set to an instance of an object.

    The message is being displayed under the "Security Alert" area and the News feed area.

    The following line is causing the error in the "Security Alert" area.

    <aspdnsf:XmlPackage ID="SecurityFeed" runat="server" PackageName="rss.aspdnsfrssconsumer.xml.config" RuntimeParams="channel=security&height=400&width=3 30" />

    Any help would be appreciated.

    John

  2. #2
    jwallwork is offline Member
    Join Date
    Sep 2008
    Posts
    38

    Default

    I was able to figure out a fix:

    using
    <asp:Literal ID="SecurityFeed" runat="server" Text="<%$ Tokens: Xmlpackage, rss.aspdnsfrssconsumer.xml.config,channel=security &height=400&width=330 %>" />

    instead of

    <aspdnsf:XmlPackage ID="SecurityFeed" runat="server" PackageName="rss.aspdnsfrssconsumer.xml.config" RuntimeParams="channel=security&height=400&width=3 30" />

    Works.