Hi Guys I have a link column in my datagridview with some URL string from example "http://google.com". I want to open this URL on website. How it is possible? Thanks.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Try this code within CellContentClick event of DataGridView
Note: Changed column index (Rows[e.RowIndex].Cells[2]) according your link column of datagridview.
I hope it resolve your problem.