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.
クエリ文字列の前のページ パラメータがわからないので、次のページで送信したいと考えています。
私はこのようにやっていますが、機能していません:
<a href="w4_wchange_states_2.aspx?St=AL" + '<% HttpContext.Current.Request.RawUrl; %>' id="A_AL">Alabama</a>
同じページにリダイレクトする 40 個のタグがあります。
どうすればこれができるか教えてください。
完全なURLに使用HttpContext.Current.Request.Url.ToString()します。
HttpContext.Current.Request.Url.ToString()
または、クエリ文字列セグメントのみ:
<a href="w4_wchange_states_2.aspx?St=AL&<% Request.Url.Query.Substring(1, Request.Url.Query.Length - 1); %>" id="A_AL">Alabama</a>