separate by &.
Like -
https://mywebsite.com/mypage.aspx?id=1&req=3¶m=5&verify=1
and the next page you will get it seperately.
like -
string id = Request.QueryString["id"].ToString();
string req = Request.QueryString["req"].ToString();
......... and so on.......