0

我正在开发一个 asp.net 应用程序并遇到这个问题:我想加载带有一些搜索条件的数据(来自用户的输入)并将其显示在一个网格(jTable)中。但是在 aspx.cs 文件中,启动查询的方法是 statis:

"public static object StudentList(int jtStartIndex, int jtPageSize, string jtSorting)" 

所以我无法在其中输入搜索条件。我想知道我可以在 aspx 文件的某个地方做到这一点:

            title: 'The Student List',
        paging: true, //Enable paging
        pageSize: 10, //Set page size (default: 10)
        sorting: true, //Enable sorting
        defaultSorting: 'Name ASC', //Set default sorting
        actions: {
            listAction: '/Demo/StudentList',
            deleteAction: '/Demo/DeleteStudent',
            updateAction: '/Demo/UpdateStudent',
            createAction: '/Demo/CreateStudent'
        },

非常感谢您的帮助。

4

1 回答 1

0

在我看来
,在“/Demo/StudentList”的webmethod的字符串中设置搜索选项,或者在任何.net控件中动态设置启动搜索选项到“http.session”变量并在Web方法中访问它。希望这会有所帮助。

于 2012-10-27T17:13:56.747 回答