1
我真的Stucked在這個。我想要的是,應該有6個表格單元格,我應該有日期的日子。像 2013年4月3日星期二2013年5月3日星期二,直到星期六 .i還有兩個按鈕,上週和下週按鈕..它應該會在下週自動顯示,當我點擊下一週按鈕時,應該顯示前一個星期,每當我按下上一個按鈕.. 也我需要採取日/月和年的價值,這樣我可以在我的SQL查詢中的where子句中使用它們.pls其迫切任何人都可以幫助我這...如何創建與上週和下週按鈕只有一個星期的日曆
IM通過訪問此鏈接
www.test.ginormous.in/dinesmart/Filestore/Food/Capture.png
create DateTime theDate = DateTime.Now; theDate = theDate.AddDays(7 - (int)theDate.DayOfWeek); – Saksham 2013-03-02 18:20:15
saksham thanx man it work.thanx ton..u save a time of my time..just one more thing.i have the date in a label in a table cell .. how can now extract it separatelt..suppose我只想在星期一和當天是4和2013年。因此,我可以在「Sun」或「Mon」theDate.ToString(「ddd」);條款 – DividesByZero 2013-03-02 19:31:17
的條款中使用它們。對於「星期天」或「星期一」theDate.ToString(「dddd」)。一年中,將ddd替換爲yyyy(lond form)或yy(short)。對於日期dd – Saksham 2013-03-02 21:08:12