何かが足りないのですが、どうすればこれを機能させることができますか?
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 が空白の場合にページが読み込まれると、事前定義されたもので日付が埋められます。