我错过了一些东西,我该怎么做?
var now = DateTime.Now;
string loadStartDate = Request.QueryString["sd"] == String.Empty ? now.AddMonths( -14 ).ToShortDateString();
string loadEndDate = Request.QueryString[ "ed" ] == String.Empty ? now.ToShortDateString();
基本上,如果 sd 和/或 ed 为空白,则当页面加载时,然后用我预定义的内容填充日期。