How to get current selected data in datalist from gridview inside it ?

Posted by Space Cracker on Stack Overflow See other posts from Stack Overflow or by Space Cracker
Published on 2010-03-24T05:44:08Z Indexed on 2010/03/24 5:53 UTC
Read the original article Hit count: 499

Filed under:
|
|

i have a datalist and inside it there is many rows and in one of these rows i have a gridview,. i can say that it's like the following

<DataList>
  <tr>
      <td> [textbox1 control]  </td>
  </tr>
  <tr>
      <td> [textbox2 control]  </td>
  </tr>
  <tr>
    <td> 
       <gridview/>
    </td>
  </tr>
</DataList>

my problem is when i'm in gridview RowCommand handler i want to know hot to get the data that exist in [textbox1 control] and [textbox1 control] ?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about datalist