这是我在中继器标签中显示的数据库值“2012/04/24”我必须在中继器标签中显示像 2012 年 4 月 12 日这样的数据库值。在 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");
}