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.
我在网站的主网页(aspx 文件)中有一个表单标签。这个表单标签包装了一个用户控件。此用户控件调用其他几个控件,所有工作都在这些控件中完成。在其中一个子用户控件中,我需要显示几个表单输入框。这些输入框需要有自己唯一的表单操作 URL
如何从子用户控件之一将操作 URL 分配给父表单标签?
您可以使用下面的代码以编程方式访问父表单。
HtmlForm frm = new HtmlForm(); frm = (HtmlForm)Page.FindControl("Form1"); frm.Enctype = "multipart/form-data";
不确定您的情况,但这对我有用:使用 HTML5,您的每个输入框都可以有自己独特的表单操作 URL。HTML5formaction属性覆盖了主表单的 action 属性。
formaction