を使用して複数のファイルをSQLデータベースにアップロードしたいと思いますAjaxFileUpload
。単一のファイルをアップロードするために使用する方法があります。aspxページで:
<asp:FileUpload ID="file_Image" runat="server"/>
そして、aspx.csページで:
protected void UploadFile(object sender, EventArgs e)
{
FileUpload FileUpload1 = file_Image;
// Read the file and convert it to Byte Array
string filePath = file_Image.PostedFile.FileName;
string filename = Path.GetFileName(filePath);
if (FileUpload1.HasFile && FileUpload1.PostedFile != null)
{
Stream fs = file_Image.PostedFile.InputStream;
BinaryReader br = new BinaryReader(fs);
Byte[] bytes = br.ReadBytes((Int32)fs.Length);}}
しかし、どうすれば似たようなものを使用できますか、AjaxFileUpload
またはAjaxコントロールからこのような画像データをストリーミングすることさえ可能ですか?あなたの知識を共有してくれてありがとう!