C#でURLパラメータを取得する方法

1.URLを取得
string url=Request.Url.ToString();

2.サイト名+画面名+パラメータ
string url=Request.RawUrl;
string url=Request.Url.PathAndQuery;

3.サイト名+ページ画面名
string url=HttpContext.Current.Request.Url.AbsolutePath;
string url= HttpContext.Current.Request.Path;

4.ドメインを取得
string url=HttpContext.Current.Request.Url.Host;

5.パラメータを取得
string url= HttpContext.Current.Request.Url.Query;

VB.net

Posted by arkgame