gpt4 book ai didi

c# - 为什么我的查询字符串值在页面加载一段时间后丢失了?

转载 作者:太空宇宙 更新时间:2023-11-03 11:11:31 25 4
gpt4 key购买 nike

为您准备的快速场景。

我在我的页面中试图在 session 变量被清除的情况下使用查询字符串将值恢复到 session 变量,如下所示:

if(Session["species"] == null || Session["species"] == "")
{
Session["species"] = Request["species"];
}

进一步,我根据这个 session 变量的值设置了另外两个 session 变量之一的值,如下所示:

if((string)Session["species"]=="Canine")
{
Session["dBreed"] = Request.Form["breed"].Trim();
}
else if((string)Session["species"]=="Feline")
{
Session["cBreed"] = Request.Form["breed"].Trim();
}

但是,似乎一旦 session 超时(我相信 20 分钟后),我仍然会收到此错误:

Object reference not set to an instance of an object.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.

Source Error:


Line 134: errorMessage = "The data received from the \"Age\" field was invalid.";
Line 135: }
Line 136: if(((string)Session["dBreed"]).Length > 50)
Line 137: {
Line 138: errorMessage = "The data received from the \"Breed\" field was invalid.";

Source File: c:\Users\cradebaugh\Documents\My Web Sites\Vaccinations\InputEntry.cshtml

(ERRORS ON): Line: 136

很明显,我明白发生了什么(Session["dbreed"] 的值从未被赋值,这可能只意味着 Session["species"] 变量在被清除后从未被重新赋值。

我的问题是:尝试请求查询字符串(使用 Request["species"])是否只在一定时间后才在页面上有效,还是其他事情一起发生?

我可以在我的 URL 中实际看到查询字符串,但似乎在 session 超时时我请求的值已不存在。

我已经计划简单地使用一个隐藏的输入字段来尝试实现与上述相同的目标,但是,我认为最好先了解以这种方式使用查询字符串的本质,然后再在未来。

感谢您抽出宝贵时间,感谢您提供的任何帮助!

最佳答案

... the value of Session["dBreed"] was never assigned, which can mean only that Session["species"] variable never got reassigned ...

或者 Session["species"] 被设置为 "Feline"。查看您的第二个代码块:

else if((string)Session["species"]=="Feline")
{
Session["cBreed"] = Request.Form["breed"].Trim();
}

如果物种是"Feline",您分配Session["cBreed"],而不是Session["dBreed"]

关于c# - 为什么我的查询字符串值在页面加载一段时间后丢失了?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13863757/

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