I am able to add a link to a datagridview but the problem is I want all the links with same name. But I am getting the name from database data
DataGridViewLinkColumn linkColumn = new DataGridViewLinkColumn();
linkColumn.Text = "View";
linkColumn.HeaderText = "View";
linkColumn.Name = "View";
linkColumn.DataPropertyName = "PART_NO";
This PART_NO is coming from database I want to change it to some text like "view".
can anyone help me...