ファイルのアップロードステータスを表示するために進行状況バーを表示する必要があるという点で、C#.net を使用して asp.net で Web アプリケーションを作成する必要があります。
質問する
1736 次
1 に答える
0
あなたの質問から私が理解したことは、AJAX拡張機能を使用してそれを実現しようとしたことに基づいています。
私のコードはこちら
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<div>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:FileUpload ID="FileUpload1" runat="server" />
</ContentTemplate>
</asp:UpdatePanel>
</div>
<br />
<div>
<asp:UpdateProgress ID="UpdateProgress1" runat="server">
<ProgressTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl="~/uploading.gif" />
</ProgressTemplate>
</asp:UpdateProgress>
</div>
</div>
これがお役に立てば幸いです。役に立ったら、回答としてマークしてください。
于 2012-09-14T05:40:26.280 に答える