GridView Tips and Tricks using ASP.NET 2.0

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ketki

    GridView Tips and Tricks using ASP.NET 2.0

    Hello Friends,

    For GridView Tips and Tricks using ASP.NET 2.0, visit:

    In this article, we will explore some of the most frequently asked questions about the GridView control. The article discusses ten tips and tricks that you can use while using the GridView control.

  • Mark Rae [MVP]

    #2
    Re: GridView Tips and Tricks using ASP.NET 2.0

    "Ketki" <ketkijaipee@gm ail.comwrote in message
    news:921d8260-0df1-43c7-9d60-a7593fb65202@p2 5g2000hsf.googl egroups.com...
    For GridView Tips and Tricks using ASP.NET 2.0, visit:
    >
    http://www.dotnetcurry.com/ShowArticle.aspx?ID=107
    string fstCell = selrow.Cells[1].Text;
    string scndCell = selrow.Cells[2].Text;
    Much more likely to be:

    string fstCell = selrow.Cells[0].Text;
    string scndCell = selrow.Cells[1].Text;


    --
    Mark Rae
    ASP.NET MVP


    Comment

    • Ketki

      #3
      Re: GridView Tips and Tricks using ASP.NET 2.0

      Thanks a lot Mark!
      I have informed the team about it.

      Regards,
      Ketki

      Comment

      Working...