第2のテーブルに格納されている可変数の画像に、表示する他のアイテムとともに格納されている設定数の画像からアプリケーションを再設計します。 ASP.Net Display Images in a GridView span across columns and rows? Using C#データベースからの画像の動的表示
私が建てasp.netページのためのデータリストコントロールを持っていますが、パス項目が動作しません知っている:
この質問を発見し、それから、修正開始しているが、少しは失わ取得しています<asp:DataList ID="dlImages" runat="server"
RepeatColumns ="2"
RepeatDirection ="Horizontal"
RepeatLayout ="Flow">
<ItemTemplate>
<asp:Image ID="ImageQ" runat="server" Width="150px" ImageUrl='<%# Bind("ImageFile", "~/photo/{0}") %>' />
</ItemTemplate>
</asp:DataList>
しかし、このリストにデータを取得しようとして失われました。画像データは以下を介して、他の情報と一緒にロードされた はもともと:
protected void Page_Load(object sender, EventArgs e)
{
string sConstr = ConfigurationManager.ConnectionStrings["CS1"].ConnectionString;
SqlConnection Conn = new SqlConnection(sConstr);
using (Conn)
{
SqlCommand command = new SqlCommand("QuestionDetail", Conn);
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add(new SqlParameter("@QuestionID", SqlDbType.BigInt));
command.Parameters["@QuestionID"].Value = Convert.ToInt32(Request["Id"]);
Conn.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
byte[] imgBytes = (byte[])reader["ImageFile"];
string encodedBytes = Convert.ToBase64String(imgBytes);
string url = string.Concat("data:image/jpg;base64,", encodedBytes);
Image1.ImageUrl = url;
byte[] imgBytes2 = (byte[])reader["ImageFile2"];
string encodedBytes2 = Convert.ToBase64String(imgBytes2);
string url2 = string.Concat("data:image/jpg;base64,", encodedBytes2);
Image2.ImageUrl = url2;
byte[] imgBytes3 = (byte[])reader["ImageFile3"];
string encodedBytes3 = Convert.ToBase64String(imgBytes3);
string url3 = string.Concat("data:image/jpg;base64,", encodedBytes3);
Image3.ImageUrl = url3;
byte[] imgBytes4 = (byte[])reader["ImageFile4"];
string encodedBytes4 = Convert.ToBase64String(imgBytes4);
string url4 = string.Concat("data:image/jpg;base64,", encodedBytes4);
Image4.ImageUrl = url4;
txt_QuestionID.Text = reader["Id"].ToString();
txt_author.Text = reader["Author"].ToString();
txt_Date.Text = reader["SubmitDate"].ToString();
txt_Stem.Text = reader["Stem"].ToString();
txt_RespA.Text = reader["RespA"].ToString();
txt_RespB.Text = reader["RespB"].ToString();
txt_RespC.Text = reader["RespC"].ToString();
txt_RespD.Text = reader["RespD"].ToString();
txt_RespE.Text = reader["RespE"].ToString();
txt_Answer.Text = reader["Answer"].ToString();
txt_Critique.Text = reader["Critique"].ToString();
txt_KeyObjective.Text = reader["KeyObjective"].ToString();
txt_References.Text = reader["References"].ToString();
txt_Practice1.Text = reader["PracticeArea1"].ToString();
txt_Practice2.Text = reader["PracticeArea2"].ToString();
txt_Practice3.Text = reader["PracticeArea3"].ToString();
txt_Practice4.Text = reader["PracticeArea4"].ToString();
txt_IsCloneOf.Text = reader["IsCloneOf"].ToString();
}
reader.Close();
}
}
私は画像部分を取り出していると、別のコードブロックを経由してのDataListにそれらを処理しようとしています(とテキスト要素を残します)、該当するレコードを取得するストアドプロシージャがあります。
..... pageloadのこのセクションでは、正しく各質問に添付画像の数に基づいて、プレースホルダをロードしている,,,が、符号化された画像を読み込む取得する方法の代わりにパスを渡す:
DataTable dt = new DataTable();
using (Conn)
{
SqlCommand ad = new SqlCommand("ImageDetail", Conn);
ad.CommandType = CommandType.StoredProcedure;
ad.Parameters.Add(new SqlParameter("@QuestionID", SqlDbType.BigInt));
ad.Parameters["@QuestionID"].Value = Convert.ToInt32(Request["Id"]);
SqlDataReader reader2 = command.ExecuteReader();
while (reader2.Read())
{
if(!Convert.IsDBNull(reader2["ImageFile"]))
{
byte[] imgBytes = (byte[])reader2["ImageFile"];
string encodedBytes = Convert.ToBase64String(imgBytes);
string url = string.Concat("data:image/jpg;base64,", encodedBytes);
}
}
reader2.Close();
dt.Load(reader2);
}
dlImages.DataSource = dt;
dlImages.DataBind();
まだnoobです。私がコントロールを変更するたびに、新しいコントロールの使い方を理解するのにしばらく時間がかかります。今すぐコードはエラーなしで実行されますが、イメージもありません。このエラーが発生したので、「IsDBNULL」のチェックを追加する必要がありました。私は、ImageDetailストアドプロシージャによってアクセスされているテーブルは、任意のレコードでゼロ値がゼロであり、ストアドプロシージャはQuestionIDを入力するとレコードを返すことを知っています。
これは有効な回答です。だから、あなたのコードとそれを比較し、手順に従えば、ここで逃したものが見つかるはずです。http://stackoverflow.com/a/33694399/2946329 –
@ S.Akbari私が問題を抱えている問題の1つは、あなたがリンクしている質問、私の質問で参照しているのは、両方とも画像アドレスを取得しているということです。私は、符号化されたデータから検索して表示する必要があるデータベース内の画像を符号化しています。私は元のアプリで使っているリーダーをどのように組み込み、それを他の2つの投稿のいずれかの構造に組み込む方法を失っています。 –
@ S.Akbari問題をより明確にしようとする編集済みの質問 –