How to select a cell in datagrid onClick in ASP.net C#

后端 未结 2 451
栀梦
栀梦 2021-01-28 14:31

I am importing a column in datatable to my grid. Now I want navigate to a new page on selecting a cell in grid by fetching the selected value. I have tried this by including bou

2条回答
  •  迷失自我
    2021-01-28 15:10

    You can use TemplateField

    
            
                "><%# Eval("SRONameinEnglish")%>
            
        
    

    and click of LinkButton put your code to navigate anywhere.

提交回复
热议问题