gpt4 book ai didi

c# - 如何从 URL 中获取数据

转载 作者:行者123 更新时间:2023-11-30 19:50:02 26 4
gpt4 key购买 nike

我有一个 URL http://localhost/TradeCredits/UnderWriter/EditQuote.aspx?QOT_ID=1我想从 URL 获取 QOT_ID。请建议如何做到这一点。

最佳答案

您可以使用这行代码:

int id = Convert.ToInt32(Request.QueryString["QOT_ID"]);

或者,如果你想进行适当的检查,可以这样做:

int id;
if (int.TryParse(Request.QueryString["QOT_ID"], out id)) {
// Do something with the id variable
} else {
// Do something when QOT_ID cannot be parsed into an int
}

关于c# - 如何从 URL 中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2816718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com