aspnetvbcsharpnerd
Programmer
I am binding gridview dynamically
How can I add to more columns as hyperlink column on every row with the id from the database.
Code:
mDataAdapter = new DataAdapter();
// Initiate the database connection
mDataAdapter.Init(Constant.CONNECTIONSTRING);
// Get the suppliers
mDataSet = mDataAdapter.GetSearchItem(ItemId, ItemName);
// Load the gridview with search items
grdItemSearch.DataSource = mDataSet;
grdItemSearch.DataBind();
How can I add to more columns as hyperlink column on every row with the id from the database.