Adding a href link to a column in a data grid

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

  1. #1

    Default Adding a href link to a column in a data grid

    Hi,

    I am trying to figure out how I can add a html link to a value (which is the
    virtual path of a file) in the data grid column. I have code as below. Please
    help!

    <asp:DataGrid id="DataGrid1" BorderColor="black" BorderWidth="1"
    CellPadding="3" AutoGenerateColumns="false"
    runat="server" AllowPaging="True" ItemStyle-Wrap=true>
    <HeaderStyle BackColor="#00AAAA"></HeaderStyle>
    <Columns>
    <asp:BoundColumn DataField="VPath"
    HeaderText="VPath"></asp:BoundColumn>
    </column>
    </asp:Datagrid>
    Vasantha peddireddy Guest

  2. Similar Questions and Discussions

    1. 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. ...
    2. Advanced Data Grid Column Grouping
      When using column grouping with the advanced data grid, is it possible to ONLY show the AdvancedDataGridColumnGroup headerText and not have the...
    3. 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...
    4. Nested Datagrid Inner Grid adding button column
      I'm creating a hierarchical, editable ASP.NET datagrid with drilldown using two SQL tables. The "child" rows sit inside a cell of its "parent". ...
    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: Adding a href link to a column in a data grid

    Try HyperLinkColumn:

    <asp:HyperLinkColumn DataTextField="VPath" HeaderText="Link"
    DataNavigateUrlField="VPath"
    DataNavigateUrlFormatString="page.aspx?path={0}">
    </asp:HyperLinkColumn>


    "Vasantha peddireddy" <Vasanthapeddireddy@discussions.microsoft.com> wrote
    in message news:96CCA152-1807-430D-9D39-B1C721389545@microsoft.com...
    > Hi,
    >
    > I am trying to figure out how I can add a html link to a value (which is
    the
    > virtual path of a file) in the data grid column. I have code as below.
    Please
    > help!
    >
    > <asp:DataGrid id="DataGrid1" BorderColor="black" BorderWidth="1"
    > CellPadding="3" AutoGenerateColumns="false"
    > runat="server" AllowPaging="True" ItemStyle-Wrap=true>
    > <HeaderStyle BackColor="#00AAAA"></HeaderStyle>
    > <Columns>
    > <asp:BoundColumn DataField="VPath"
    > HeaderText="VPath"></asp:BoundColumn>
    > </column>
    > </asp:Datagrid>

    Elton Wang 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