为什么 linkBut​​ton 不更改其 commandArgument - 即使在创建新实例并重新分配新值之后也是如此?

发布于 2024-08-02 17:01:33 字数 741 浏览 6 评论 0原文

所以我有一个名为 linkBut​​ton 的 LinkBut​​ton。

    protected LinkButton linkButton;

在获取指定目录的每个目录的循环中,我有以下内容:

    linkButton = new LinkButton();
    linkButton.Text = DirInf.Name;
    linkButton.CommandArgument = DirInf.FullName;
    linkButton.Command += new CommandEventHandler(linkButton_Command);

其中 DirInf 的类型为 DirectoryInfo。

现在,当我将:

        Response.Redirect("filebrowser.aspx?dir=" + linkButton.CommandArgument);
        linkButton = new LinkButton();

在函数 linkBut​​ton_Command 中放置时,linkBut​​ton.CommandArgument 似乎始终是“C:\Windows”,这恰好是分配的最后一个值 linkBut​​ton.CommandArgument。

但我创建了它的一个新实例 - 但该值仍然保留......

我很困惑......

So I have a LinkButton called linkButton.

    protected LinkButton linkButton;

and inside a loop which gets every directory of a specified directory, I have this:

    linkButton = new LinkButton();
    linkButton.Text = DirInf.Name;
    linkButton.CommandArgument = DirInf.FullName;
    linkButton.Command += new CommandEventHandler(linkButton_Command);

Where DirInf is of type DirectoryInfo.

Now when I put:

        Response.Redirect("filebrowser.aspx?dir=" + linkButton.CommandArgument);
        linkButton = new LinkButton();

inside the function linkButton_Command, linkButton.CommandArgument seems to always be "C:\Windows," which so happens to be the last value linkButton.CommandArgument was assigned.

But I created a new instance of it - but the value still retains...

I'm quite puzzled...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北方。的韩爷 2024-08-09 17:01:33

Response.Redirect 将抛出 ThreadAbortException,因此您的分配实际上从未发生。我很好奇您何时再次测试该值,考虑到 ASP.NET 状态的工作方式...是在下一个请求上吗?

我承认对你实际上在做什么有点困惑。您能否提供一个简短但完整的示例(页面+代码隐藏)来演示该问题?

Response.Redirect will throw a ThreadAbortException, so your assignment is never actually taking place. I'm curious as to when you were testing the value again as well, given the way that ASP.NET state works... was it on the next request?

I admit to being somewhat confused as to what you're actually doing. Could you provide a short but complete example (page + codebehind) which demonstrates the problem?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文