如何實現asp.net中FileUpload檔案型別過濾功能
阿新 • • 發佈:2019-01-04
<script type="text/javascript"> function openfile() { try { var fd = new ActiveXObject("MSComDlg.CommonDialog"); fd.Filter = "上傳檔案 (*.jpg;*.jpeg;*.gif)|*.jpg;*.jpeg;*.gif"; fd.FilterIndex = 2; // 必須設定MaxFileSize. 否則出錯 fd.MaxFileSize = 128; fd.ShowOpen(); document.getElementById("txtFilePath").value = fd.Filename; } catch (e) { document.getElementById("txtFileName").value = ""; } } <script>
Asp.net中的FileUpload不提供File Filter功能,而且也不能使用OpenFileDialog。那就只有通過JavaScript實現
呼叫:
<asp:TextBox ID="txtFilePath" runat="server" Width="300px" />
<input type="button" onclick="openfile()" value="Browse..." />