how to get data grid column names

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default how to get data grid column names

    Hi,
    Can any one tell me how to get column names fro a datagrid. Is their
    any property or collection containing them

    Regards

    Swapnil D.


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    swapnil Daingade Guest

  2. Similar Questions and Discussions

    1. #38054 [Asn->Fbk]: PDO with db2 returning column names but not data
      ID: 38054 Updated by: wez@php.net Reported By: john dot enevoldson at pulsen dot se -Status: Assigned +Status:...
    2. Getting column data without column names
      Hello all, I'm trying to write a coldfusion program to display account data such as name, address, phone #, etc. I retrieve this data from an ...
    3. Set column names to template grid at runtime
      Hi all, I have datagrid on a C# webform. Users can choose a lookup table to read\ edit etc via selection from a dropdown list box. However I...
    4. Boolean column in a data grid
      My data grid constains several boolean columns, it is connected to a dataset. Can anyone tell me why i have to click the bool columns (init value...
    5. hide column in data grid
      Hello. I just populated my datagrid but I need to hide one of the column. Since I need this column's data, I cannot drop that column from my...
  3. #2

    Default Re: how to get data grid column names

    You can get the column name ( header name) using this property

    datagrid1.columns(0).headertext

    --
    Saravana
    Microsoft India Community Star,MC**
    [url]www.ExtremeExperts.com[/url]



    "swapnil Daingade" <swapnil@indiya.com> wrote in message
    news:#tHYLs$WDHA.3404@tk2msftngp13.phx.gbl...
    > Hi,
    > Can any one tell me how to get column names fro a datagrid. Is their
    > any property or collection containing them
    >
    > Regards
    >
    > Swapnil D.
    >
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Saravana Guest

  4. #3

    Default Re: how to get data grid column names

    Saravana,

    Is there no way to refer to the column with a name. I've been using column(i), but if I ever insert columns before i, then all my code behind's are out of sequence. Naturally, I've added the values, if if hidden as the first columns, but there are times when displayed columns are affected.

    Thanks,
    Steve

    Quote Originally Posted by Saravana View Post
    You can get the column name ( header name) using this property

    datagrid1.columns(0).headertext

    --
    Saravana
    Microsoft India Community Star,MC**
    [url]www.ExtremeExperts.com[/url]



    "swapnil Daingade" <swapnil@indiya.com> wrote in message
    news:#tHYLs$WDHA.3404@tk2msftngp13.phx.gbl...
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139