Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
calendarextender が添付されているテキストボックスの動作に一貫性がありません。ほとんどの場合、日付を選択してフォームを送信した後、テキスト ボックスに Text 値がありません (クイック ウォッチを使用して確認しました)。再構築後(何も触れずに)、想定どおりに動作します。しかし、サイトをナビゲートしてページに戻った後、機能する場合と機能しない場合があります。
ページ サイクルの最後の機会に、CalendarExtender の選択を設定する必要があります。
void Page_PreRender(オブジェクト送信者, EventArgs e) { if (dateFromAnotherPage != null) { CalendarExtender1.SelectedDate = DateTime.Parse(dateFromAnotherPage); } }