これは私のデータベース値「2012/04/24」です。リピーターのラベルに表示されます。このようなデータベース値をリピーターのラベルに表示する必要があります。repeater_ItemDataBoundイベントでどうすればよいですか。
<td class="csstablelisttd">
<asp:Label ID="lblPatientsBirthDate" runat="server" Text='<%#Eval("Patients_Birth_Date")%>'></asp:Label>td>
protected void repeaterPatientList_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
Label lblbirthDate = (Label)e.Item.FindControl("lblPatientsBirthDate");
}