このコードを選択する前に (@) が来るという概念は何ですか? protected void btnSearch_Click(オブジェクト送信者, EventArgs e) {
SqlDataSource2.SelectCommand = **@**"SELECT tblstore.storname,tblproduct.pid, tblproduct.pname, tblproduct.pprice, tblproduct.publisher, tblproduct.writer FROM tblproduct INNER JOIN tblstore ON tblproduct.storeid = tblstore.storeid WHERE tblproduct.pname LIKE @ likeText;";
SqlDataSource2.SelectParameters.Add("likeText", txtName.Text);
GridView1.EmptyDataText = "not result";
}