我有一個網格視圖,其中的日期字段是標籤。 我想知道這個日期是否是從當前日期起的過去3個月。 我在DataBound
事件中執行此操作。 這裏是我的代碼片段:如何確定標籤日期是否過去3個月
protected void gvcmi_DataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Label LastVisitLbl = (Label)e.Row.Cells[7].FindControl("lblStatusv");
If (LastVisitLbl /*not sure what to put here*/)
{
//Do something
}
}
}
我堅持我應該放什麼東西在第二個如果。
標籤的文字代表日期嗎?如果是,哪種格式? – Ben