使用基类中的隐藏输入变量在回发期间保留值
在我的基类中:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 .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.