使用带有Session位置的jQuery自动完成文本框

时间:2018-03-27 16:02:16

标签: c# textbox jquery-ui-autocomplete

我的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变量。 这是我添加会话后出现错误的地方。

0 个答案:

没有答案