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.
コードビハインドでFileUploadコントロールにアクセスしたい。これが私のコードです:FileUpload file =(FileUpload)this.FindControl( "FleUpload");
コントロールはFormViewにあります。しかし、プロジェクトを実行した後、「file」の値はnullになります。フォームビューでFileUploadコントロールにアクセスするにはどうすればよいですか?
助けてください
私はこのコードを試しました:
if(FormView1.CurrentMode == FormViewMode.Edit){ FileUpload f = (FileUpload) FormView1.FindControl("FleUpload"); .... then rest of code }
そしてそれはうまくいった。