Link to home
Start Free TrialLog in
Avatar of dipster307
dipster307

asked on

how to make rows clickable, datagrid, in asp.net

I have created coding to read xml file, place it in dataset and put it in datagrid. However I want to make the rows clickable each row opens a specific page.

            XmlDocument loadXML = new XmlDocument();
            loadXML.Load(Server.MapPath("Data.xml"));
            XmlNodeReader xmlReader = new XmlNodeReader(loadXML);
            DataSet dataSet = new DataSet();
            dataSet.ReadXml(xmlReader);

            myDataGridviewV2.DataSource = dataSet;
            myDataGridviewV2.DataBind();

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of rajapandian_81
rajapandian_81
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial