Hi,
i've a web page where insert a radlistview and connect to list of object...my code is:
As you can see there is a field userid, I wish that the value of the userid is passed on the button, is this possible?
i've a web page where insert a radlistview and connect to list of object...my code is:
As you can see there is a field userid, I wish that the value of the userid is passed on the button, is this possible?
<fieldset style="float: left; width: 340px; height: 195px"> <legend>Category: <%# CType(Container.DataItem, PropertyUtente).Category%> </legend> <table cellpadding="0" cellspacing="0" width="95%"> <tr> <td style="width: 75%;"> <table cellpadding="5" cellspacing="0"> <tr> <td style="width: 25%;"> Userid: </td> <td style="width: 75%; text-align:left"> <%# CType(Container.DataItem, PropertyUtente).Userid%> </td> </tr> <tr> <td style="width: 25%;"> Name: </td> <td style="width: 75%; text-align:left"> <%# CType(Container.DataItem, PropertyUtente).user%> </td> </tr> <tr> <td> City: </td> <td style="width: 75%; text-align:left"> <%# CType(Container.DataItem, PropertyUtente).city%> </td> </tr> <tr> <td> Phone: </td> <td style="width: 75%; text-align:left"> <%# CType(Container.DataItem, PropertyUtente).phone%> </td> </tr> <tr> <td> Cellular: </td> <td style="width: 75%; text-align:left"> <%# CType(Container.DataItem, PropertyUtente).Cellular%> </td> </tr> <tr> <td> </td> <td style="width: 75%; text-align:left"> <asp:Button ID="Button1" runat="server" Text="Details" /> </td> </tr> </table> </td> <td style="vertical-align: top; text-align: right; width: 25%;"> <asp:Image ID="Image1" runat="server" ImageUrl='<%# CType(Container.DataItem, PropertyUtente).imageprofile%>' Height="120px" Width="100px"/> </td> </tr> </table> </fieldset>