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

  • Home
  • SEARCH
  • 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 3965134
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T03:25:18+00:00 2026-05-20T03:25:18+00:00

I am using MongoDB with C# driver. I managed to add/delete/update data from collections,

  • 0

I am using MongoDB with C# driver. I managed to add/delete/update data from collections, but I dont know how to display a collection in the gridview. If it’s not possible, how can I display collections as tables in asp.net?

  • 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-20T03:25:19+00:00Added an answer on May 20, 2026 at 3:25 am

    First load a query from mongodb like this:

          var server = MongoServer.Create("mongodb://localhost:27020");
          var database = server.GetDatabase("someDb");
    
          var collection = database.GetCollection<User>("someCollection");
          var searchQuery = Query.EQ("someName", "someValue"); // you can place any search condition here 
          //if you want all documents from collection use FindAll
          var cursor = collection.Find(searchQuery);
          cursor.SetLimit(50); // you can specify limit
          // set sort orders
        cursor.SetSortOrder(SortBy.Ascending("someSorField").Descending("someSorField2"));
    
        var resultList = cursor.ToList(); //get list of items from mongodb
    

    Then on Page_Load event, bind data:

     gvwExample.DataSource = resultList;
     gvwExample.DataBind();
    

    Then specify binding to datasource on the page:

    <asp:GridView ID="gvwExample" runat="server" AutoGenerateColumns="False" CssClass="basix" >
    <columns>
     <asp:BoundField DataField="FirstName" HeaderText="First Name" />
     <asp:BoundField DataField="LastName" HeaderText="Last Name" />
    </columns>
    </asp:GridView> 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using MongoDB C# driver ( http://github.com/samus/mongodb-csharp ), seems that I'm unable to get the
I am using MongoDB v1.4 and the mongodb-csharp driver and I try to group
I am using the MongoDB-Csharp driver and I was wondering what the proper way
I have been using MongoDB and the Ruby driver and Mongoid, and lines db.things.find({j:
I wonder if the ruby driver for MongoDB is using the native javascript driver,
related to MongoDB Group using Ruby driver if I want to do something like
Using TortoiseSVN against VisualSVN I delete a source file that I should not have
Using C# and System.Data.SqlClient, is there a way to retrieve a list of parameters
I have recently been getting my feet wet in MongoDB using Mongoid w/ Rails
In my Sinatra app, I'm using a MongoDB with Grid to store book covers

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.