Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 FormView 控件以及 html 和服务器控件。我可以通过以下方式找到我的服务器控制
frm.FindControl("myContorlName");
但如何获得 html 控件?我知道我在 Request 对象中有 html 控件,但是如何获取它们?
谢谢
如果您添加了 html控件,runat="server"则可以使用其他方式访问它Request.Form[ControlName.UniqueID],您需要添加name="yourcontrol",您将获得Request.Form["YourControlName"].
runat="server"
Request.Form[ControlName.UniqueID]
name="yourcontrol"
Request.Form["YourControlName"]