URL.UnsetQuery (gb.web)
Static Function UnsetQuery ( URL As String, Field As String ) As String
从查询
URL 中删除参数
Field ,并返回新的修改后的查询。
如果
URL 没有
Field 参数,则查询将原封不动地返回。
Examples
Print URL.UnsetQuery("http://mysite.org/test?a=3&b", "a")
Print URL.UnsetQuery("http://mysite.org/test?b", "a")
Print URL.UnsetQuery("http://mysite.org/test?b", "b")