我有字符串中的 Json 文件(例如):
@{
"Url": "http://site.com/?q=windows8"
}
?q=
在 c# (windows 8)之后如何获取信息。对不起我的英语不好。
您可以使用查询字符串。
在代码隐藏文件中
public String q
{
get
{
if (Request.QueryString["q"] == null)
return String.Empty;
return Convert.ToString(Request.QueryString["q"]);
}
}
然后使用下面的行来获取值
var index = ('<%=q%>');
你可以这样做:
字符串 s = "myURL/?q=windows8";
// Loop through all instances of ?q=
int i = 0;
while ((i = s.IndexOf("?q=", i)) != -1)
{
// Print out the substring. Here : windows8
Console.WriteLine(s.Substring(i));
// Increment the index.
i++;
}