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 9136821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:00:17+00:00 2026-06-17T09:00:17+00:00

I’m a beginner at ASP.net. I want to create a custom GridView where it

  • 0

I’m a beginner at ASP.net. I want to create a custom GridView where it contains images and such.

But i’ve searched a lot for a guide that explains how to customize GridView controller. All existing ones (the ones i found of course) only talks about how to do a certain uses out of it, like e-commerce site Gridview, or inline Gridview and others. But none are explaining it for a beginner like me.

If there’s a guide or even a good book for using and customizing ASP.net controls, i’d be grateful if you mentioned it.

  • 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-06-17T09:00:18+00:00Added an answer on June 17, 2026 at 9:00 am

    Question 1 – Good ASP.NET book

    The book that really helped me learn ASP.NET was – 70-515 Web Application Development With Microsoft .NET Framework 4

    The only prerequisite for this book is C# or VB.NET and some basic HTML knowledge, it assumes that the reader has never done ASP.NET before and all the examples are really easy to follow.At the end of every chapter there are step by step labs which guide you to create a sample website based on what you’ve learned in that chapter.

    Here are some topics which the book covers:

    1. ASP.NET Page life cycle
    2. ASP.NET server controls
    3. Data bound controls (GridView,DetailsView,ObjectDataSource,SqlDataSource)
    4. Validation and site navigation
    5. Data access in ASP.NET
    6. Localization and Globalization
    7. AJAX and javascript (jQuery)
    8. ASMX web services and WCF
    9. ASP.NET Dynamic Data and MVC
    10. Deploying and monitoring an ASP.NET application

    If it sounds like something you’d be interested in I bought mine from amazon but I know oreilly stock it as well

    Question 2 – starting with GridView

    If you want to learn working with the gridview I would suggest starting with the basics e.g. binding to a List<T>:

    ASPX:

    <asp:GridView ID="gvEmployees" runat="server" AutoGenerateColumns="false">
        <Columns>
            <asp:BoundField DataField="Id" HeaderText="Id" />
            <asp:BoundField DataField="Name" HeaderText="Employee name" />
        </Columns>
    </asp:GridView>
    

    Code behind:

    public partial class WebForm1 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                gvEmployees.DataSource = new List<Employee>()
                {
                new Employee{ Id=1,Name="Employee 1"},
                new Employee{ Id=2,Name="Employee 2"}
                };
    
                gvEmployees.DataBind();
            }
        }
    }
    
    public class Employee
    {
        public int Id { get; set; }
        public string Name { get; set; }
    }
    

    Once you have the basics just play around with the gridview and try binding to different types of objects and you’ll get a hang of it in no time:

    1. Binding gridview to a SQL Table
    2. Bind gridview to image list
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to count how many characters a certain string has in PHP, but
I have a French site that I want to parse, but am running into
I want to construct a data frame in an Rcpp function, but when I
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am using JSon response to parse title,date content and thumbnail images and place
I want use html5's new tag to play a wav file (currently only supported
I'm interested in microtypography issues on the web. I want a tool to fix:
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I want to show the soap response to UIWebview.. my soap response is, <p><img
This could be a duplicate question, but I have no idea what search terms

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.