在 ASP.NET 中使用查询字符串

Working with Query String in ASP.NET

"~/ActiveGoals.aspx?UserName={0}?SUName={1}"

这是一个 URL,将在点击事件后重定向。

之后我想利用 QueryString 的第二部分,即 SUName。

你必须使用 like

"~/ActiveGoals.aspx?UserName={0}&SUName={1}"

没有

"~/ActiveGoals.aspx?UserName={0}?SUName={1}"

然后你从后面的代码中得到 SUName

string str=Request.QueryString["SUName"];