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.
ListView に詳細なページ ビュー (MVC ではない) へのリンクがあります。
http://localhost/mysite/events.aspx?eventID=14
ルーティングを実装すると、リンクは次の形式になります。
http://localhost/mysite/Events/14
Events.aspx コード ビハインドで eventID 値を解析/取得する最良の方法は何ですか? また、値が実際に渡されたことを確認するにはどうすればよいですか?
私はそれを理解し、他の人が参照できるように質問を残しています:
if (!Page.IsPostBack) { if (Page.RouteData.Values["EventID"] != null) { int eventID = Convert.ToInt32(Page.RouteData.Values["EventID"]); } }