Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6623093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:29:30+00:00 2026-05-25T21:29:30+00:00

I have a UserControl AutomatedFeedGridView.ascx which is essentially a GridView. It has a public

  • 0

I have a UserControl AutomatedFeedGridView.ascx which is essentially a GridView. It has a public property Category which is passed in on the page using the control.

The problem I have is that I want to filter based on a dropdown list on the calling page.

Below is the codebehind for the AutomatedFeedGridView control:

// The feed category
public Feeds.FeedCategory Category { get; set; }


protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        List<AutomatedFeed> x = Feeds.GetAutomatedFeed(Category);
        gvAutomatedFeed.DataSource = x;
        gvAutomatedFeed.DataBind();
    }

    else
    {
        List<AutomatedFeed> x = (List<AutomatedFeed>)gvAutomatedFeedCategory.DataSource;

        foreach (AutomatedFeed y in x)
        {
            // if condition is not met, hide y
        }
    }

So on the first load, the GridView is bound to a List of AutomatedFeed objects. On any subsequent calls (caused by a postback on the page containing the control) I want to run some code to filter out some of the items in the GridView. The problem is this line:

List<AutomatedFeed> x = (List<AutomatedFeed>)gvAutomatedFeedCategory.DataSource;

I’ve tried all of the solutions here but none of them seem to work, I always get an Object reference not set to an instance error. Am I missing something or am I doing this in completely the wrong way?

I know I could easily just make another call to Feeds.GetAutomatedFeed(Category) but there must be a better way to do it than to make another stored procedure call?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:29:31+00:00Added an answer on May 25, 2026 at 9:29 pm

    you can store data source in session as Session["x"] = x ;

    when page post back retrieve it back as List<AutomatedFeed> x = List<AutomatedFeed>)Session["x"];

    UPDATE:

    DataSource property will be null unless you explicitly re-assign and re-bind it on every postback.

    You could use Session, Cache, or ViewState to keep the DataSource. But it will take more memory.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UserControl in my Asp.net project that has a public property. I
I Have a UserControl called TenantList.ascx which contains a slightly modified GridView from DevExpress
I have UserControl which has two components public System.Windows.Forms.ComboBox innerComboBox; public System.Windows.Forms.TextBox innerTextBox; and
I have a UserControl.ascx which essentially outputs the Name and Email of the user
I have UserControl which contains a TextBox and a Button control. The Button opens
I have a usercontrol which has a couple of textblocks on it <UserControl x:Class=Tester.Messenger
I have a usercontrol that has several public properties. These properties automatically show up
I have a usercontrol which overrides the property Text. But this property is not
I have a UserControl with the following Property: public List<Rect> HotSpots { get {
I have a UserControl, which is basically a wrapper for a GridView that needs

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.