如何获取 URL 和查询字符串? VB.Net
我正在重构一些遗留代码。 该应用程序未使用查询字符串。 以前的开发人员对应用程序在其他地方使用的一些变量进行了硬编码。
像这样使用 VB.NET
so.Cpage = "ContractChange.aspx"
我的问题是我可以通过编程方式设置这个值并包含当前的查询字符串吗?
我希望 so.Cpage
类似于 ContractChange.aspx?d=1&b=2
我可以用请求对象或其他东西来做到这一点吗? 请注意,我不需要域。
I am refactoring some legacy code. The app was not using querystrings. The previous developer was hard coding some variables that the app uses in other places.
Like this using VB.NET
so.Cpage = "ContractChange.aspx"
My question is can I programatically set this value and include the current querystring?
I want so.Cpage
to be something like ContractChange.aspx?d=1&b=2
Can I do this with the request object or something? Note, I don't need the domain.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
要获取当前查询字符串,您只需执行类似以下操作:
这会将“d”查询字符串的值分配给字符串变量“query”。 请注意,所有查询字符串值都是字符串,因此如果您传递数字,则需要“转换”或将这些字符串值转换为数字(但在转换时请注意异常)。 例如:
Request 对象的 QueryString 属性是名称/值键对的集合。 具体来说,它的类型为 System.Collections.Specialized.NameValueCollection,您可以像这样迭代每个名称/值对:
使用这些机制(或非常类似的机制)应该使您能够构造一个字符串变量,其中包含您希望导航到的完整 url(页面和查询字符串)。
To get the current query string you would simply do something like the following:
This will assign the value of the "d" querystring to the string variable "query". Note that all query string values are strings, so if you're passing numbers around, you'll need to "cast" or convert those string values to numerics (be careful of exceptions when casting, though). For example:
The QueryString property of the Request object is a collection of name/value key pairs. Specifically, it's of type System.Collections.Specialized.NameValueCollection, and you can iterate through each of the name/value pairs as so:
Using either of these mechanisms (or something very similar) should enable you to construct a string variable which contains the full url (page and querystrings) that you wish to navigate to.
尝试这个:
Try this:
在 VB.Net 中,您可以使用以下命令来完成此操作。
如果您想将其作为整数处理,可以执行以下操作:
In VB.Net you can do it with the following.
If you want to process this in as an integer, you can do the following:
尝试这个
try this
不确定 VB.NET 中的语法,但在 C# 中您只需要这样做
希望这会有所帮助。
Not sure about the syntax in
VB.NET
but inC#
you would just need to doHope this helps.