ASP:输入提交按钮
我正在尝试使用 LiteralControl 添加一个按钮作为输入 type="submit"
litLevelList.Text += string.Format(" < 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确实必须构建控件,请尝试使用 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
更新
这对我有用:
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: