使用基类中的隐藏输入变量在回发期间保留值

发布于 2024-10-11 22:36:31 字数 541 浏览 0 评论 0原文

在我的基类中:

public abstract class BaseUserControl : System.Web.UI.UserControl
{
  protected System.Web.UI.HtmlControls.HtmlInputHidden MyID;

  //This is called when the page loads
  private void OnLoad()
  {
     MyID.Value = "testId";
  }

 protected void OnButtonClick(object sender, EventArgs e)
{
    string s = this.MyID.Value;
}

}

在继承自 BaseUsercontrol 的用户控件中 ascx 具有:

<asp:Button id="btnTest" runat="server" OnClick="OnButtonClick" />

为什么我不能以这种方式使用隐藏的输入变量?

In my base class:

public abstract class BaseUserControl : System.Web.UI.UserControl
{
  protected System.Web.UI.HtmlControls.HtmlInputHidden MyID;

  //This is called when the page loads
  private void OnLoad()
  {
     MyID.Value = "testId";
  }

 protected void OnButtonClick(object sender, EventArgs e)
{
    string s = this.MyID.Value;
}

}

In my user control that inherits from BaseUsercontrol The ascx has:

<asp:Button id="btnTest" runat="server" OnClick="OnButtonClick" />

Why can't I use the hidden input variable this way??

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

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

发布评论

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

评论(1

梦过后 2024-10-18 22:36:31

如果您的 .ascx 中有一个 id= MyID 的 HiddenInputField 并且这就是您尝试使用的内容,那么这不是您的做法。

您将需要执行 FindControl。

或者
您可能需要提供更多有关原因以及您想要实现的目标的详细信息。
因为可能还有其他可能的方法来实现您想要做的事情。

If you are having an HiddenInputField in your .ascx with id= MyID and that's what you are trying to use then that is not how you do it.

You will need to do a FindControl.

Or
You might want to provide more details about why and what exactly you want to achieve.
Because there might be other possible ways to achieve what you are trying to do.

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