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.
私はURLを持っています:
sys.php?x = 23&y = 20&z = 9d939b
そして、私はそれから「z」値を解析する方法を本当に知りません。
こちらHttpUtility.ParseQueryString()で詳しく説明されている方法を使用してください。すべての名前 (x、y、z) と値 (23、20、3d939b) を提供するコレクションを返します。
HttpUtility.ParseQueryString()
試す:
var zValue = Request.QueryString["z"];