ASP:输入提交按钮

发布于 2024-10-16 11:32:44 字数 348 浏览 2 评论 0原文

我正在尝试使用 LiteralControl 添加一个按钮作为输入 type="submit"

litLevelList.Text += string.Format(" &lt input type='submit' id='{0}' value='{1}' name='{2}' >", btnSave.ClientID, Lang.Trans("Save Changes " )  , btnSave. ??);

我可以使用 CLientID 获取按钮 ID,但如果没有名称,数据似乎不会提交。

谁能告诉我如何访问 ASP 为按钮控件呈现的名称值。

谢谢, 毗湿奴

I am trying to use literalcontrol to add a button as input type="submit"

litLevelList.Text += string.Format(" < input type='submit' id='{0}' value='{1}' name='{2}' >", btnSave.ClientID, Lang.Trans("Save Changes " )  , btnSave. ??);

I could get the button ID using CLientID but without the name the data doesnt seems to be submitted.

Could anyone tell me how i could access the name value rendered by ASP for a button control.

thanks,
vishnu

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

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

发布评论

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

评论(1

兔小萌 2024-10-23 11:32:44

如果您确实必须构建控件,请尝试使用 HtmlGenericControl 或 PlaceHolder 控件

http://msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlgenericcontrol.aspx

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder .aspx

更新

这对我有用:

    LiteralControl txtText = new LiteralControl();
    txtText.Text = "Something";
txtText.Text += "<input type='submit' text='Okay' id='" + btnSave.ClientID + "' name='" + btnSave.UniqueID + "'>"; 
    PlaceHolder1.Controls.Add(txtText);

If you really must build the control, try using a HtmlGenericControl or a PlaceHolder control

http://msdn.microsoft.com/en-us/library/system.web.ui.htmlcontrols.htmlgenericcontrol.aspx

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.placeholder.aspx

UPDATE

This works for me:

    LiteralControl txtText = new LiteralControl();
    txtText.Text = "Something";
txtText.Text += "<input type='submit' text='Okay' id='" + btnSave.ClientID + "' name='" + btnSave.UniqueID + "'>"; 
    PlaceHolder1.Controls.Add(txtText);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文