如何隐藏FileUpload控件的"TextBox"?

Fer*_*hat 3 asp.net textbox file-upload button hide

在我的ASP.NET页面中,我使用的是"FileUpload"控件.整个事情已经实现并且按预期工作但是...我不希望TextBox控件是"FileUpload"的一部分.(FileUpload = TextBox + Button)

是否有可能只删除/隐藏TextBox并让Button看起来像LinkBut​​ton?

谢谢

shi*_*iba 10

<input type="file" id="selectedFile" style="display: none;" />
<input type="button" value="Browse..." onclick="document.getElementById('selectedFile').click();" />
Run Code Online (Sandbox Code Playgroud)

这肯定会奏效.我在我的项目中尝试过它.它需要javascript或CSS.