日付に基づいて、セッション プレフィックス値に従ってテーブル名を選択する検索ページですが、無効な列名 'ALV' としてエラーが発生します。「ALV」はプレフィックス値の 1 つです。
protected void Button1_Click(object sender, EventArgs e)
{
DateTime fromDate;
DateTime toDate;
if (DateTime.TryParse(txtFrom.Text, out fromDate) && DateTime.TryParse(txtTo.Text, out toDate))
{
if (DropDownList1.SelectedItem.Text == "RouteToGrowth")
{
SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ConStr"].ToString());
con.Open();
string Prefix = Session["Prefix"].ToString();
string SqlStatement1 = " select ActionID,rid ,h.UserID,h.Date,h.Tablename,h.Feedback,h.Status from history h,LoginTable l where l.UserId=h.UserID and h.Tablename='RouteToGrowthRecord_st' and l.Prefix=" + Prefix + " and date between @from and @to ";
SqlCommand cmd1 = new SqlCommand(SqlStatement1, con);
cmd1.Parameters.Add("@from", SqlDbType.Date).Value = fromDate;
cmd1.Parameters.Add("@to", SqlDbType.Date).Value = toDate;
cmd1.Parameters.Add("@Prefix", SqlDbType.VarChar).Value = Prefix;
cmd1.CommandType = CommandType.Text;
cmd1.ExecuteNonQuery();
GridView1.DataBind();
con.Close();
}
}
else
{
ClientScript.RegisterStartupScript(Page.GetType(), "validation", "<script language='javascript'>alert('Please fill the data correctly')</script>");
}
}