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"]