我遇到以下代码问题
e.TotalRows = data.Count(); //getting exception
Jqgrid1.DataSource = data.Skip((e.NewPageIndex - 1) * Jqgrid1.PagerSettings.PageSize).Take(Jqgrid1.PagerSettings.PageSize);
Jqgrid1.DataBind();
浏览器上的错误描述
The full-text query parameter for Fulltext Query String is not valid.
说明
An unhandled exception occurred during the execution of the current web request.
Please review the stack trace for more information about the error and where it
originated in the code.
例外详细信息:
System.Data.SqlClient.SqlException:
The full-text query parameter for Fulltext Query String is not valid.
我正在使用.Net 4
。
我的连接字符串很好,因为我可以管理员登录并查看其他页面。
有谁知道如何在asp.net中实现这一点?