コントロールとを使用してデータベースに画像を挿入しています。MemberImage列のare とControlsにあります。データを挿入した後、画像列にデータベースにnullが表示されます。ListView
EntityDataSource
InsertItemTemplate
Image
FileUpload
正しい手順のための任意のアプローチが高く評価されます。
私のコードスニペットは次のとおりです。
<asp:ListView ID="IndividualListView" runat="server" DataKeyNames="IndividualId" DataSourceID="IndividualDataSource" InsertItemPosition="LastItem"
oniteminserting="IndividualListView_ItemInserting"
onselectedindexchanged="IndividualListView_SelectedIndexChanged">
<InsertItemTemplate>
<td>
<asp:Button ID="InsertButton" runat="server" CommandName="Insert"
Text="Insert" BorderStyle="Ridge" />
<asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
Text="Clear" BorderStyle="Ridge" />
</td>
<td>
<asp:TextBox ID="IndividualIdTextBox" runat="server"
Text='<%# Bind("IndividualId") %>' />
</td>
<td>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# Bind("MemberImage") %>'/><br />
<asp:FileUpload ID="FileUpload1" runat="server" /><br />
<asp:Label ID="Label1" runat="server" Text=""></asp:Label>
</td>
</InsertItemTemplate>
</asp:ListView>
<asp:EntityDataSource ID="IndividualDataSource" runat="server"
ConnectionString="name=SheepGateEntities"
DefaultContainerName="SheepGateEntities" EnableDelete="True"
EnableInsert="True" EnableUpdate="True" EntitySetName="Individuals"
EntityTypeFilter="Individual" Include="Counsellings, Households, Services">
</asp:EntityDataSource>
ページの背後にあるコードは次のとおりです。
protected void IndividualListView_ItemInserting(object sender, ListViewInsertEventArgs e)
{
FUpload = (FileUpload)IndividualListView.InsertItem.FindControl("FileUpload1");
FLabel = (Label)IndividualListView.InsertItem.FindControl("Label1");
try
{
FileUpload img = (FileUpload)FUpload;
Byte[] imgByte = null;
if (img.HasFile && img.PostedFile != null)
{
//To create a PostedFile
HttpPostedFile File = FUpload.PostedFile;
imgByte = new Byte[File.ContentLength];
//force the control to load data in array
File.InputStream.Read(imgByte, 0, File.ContentLength);
}
e.Values.Add("MemberImage", FUpload.FileName);
}
catch
{
FLabel.BackColor.Equals("Red");
FLabel.Text = "There was an error";
}
}