我的C#代码看起来像this。
如何将我的Session['location']
变量添加到Sqlcommandtext中,以便整个代码可以正常工作。
我想要我的代码
cmd.CommandText = "select ContactName, CustomerId from Customers where " &
"ContactName like @SearchText + '%' and Location1=@Location1";
cmd.Parameters.AddWithValue("@SearchText", prefix)
cmd.Parameters.AddWithValue("@Location1", Session["location"]);
我得到了与上面链接完全相同的代码,但我需要添加Session变量。 这是我添加会话后出现错误的地方。