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.
我是 asp.net/vb.net 的新手。我有一个查询字符串格式的字符串,即字符串已格式化: value1=data1&value2=data2...
我需要一种方法(我确定他们可能是它的内置函数)能够获取任何给定字段的值,例如 Dim data1 = string.querystring("value1")。我用谷歌搜索它并找到了函数查询字符串,但它似乎只能直接从 URL 获取,但我将该数据存储在字符串变量中并希望从中获取数据。这可能吗?
HttpUtility.ParseQueryString,您可以在任何上下文中调用它,因为它只需要字符串参数。只需添加对 的引用System.Web,即使它是桌面应用程序,您也可以这样做。
HttpUtility.ParseQueryString
System.Web
http://msdn.microsoft.com/en-us/library/ms150046.aspx