我有一个 ObjectDataSource,我试图在其中传递一些参数。
GridDataSource.SelectMethod = "GetAllCountries";
GridDataSource.SelectParameters.Add("PageSize", pageSize.ToString());
GridDataSource.SelectParameters.Add("OrderBy", orderBy);
GridDataSource.SelectParameters.Add("StartIndex", startIndex.ToString());
我的方法在 App_Code/DAL/CountriesDB.CS
public List<Countries> GetAllCountries(int PageSize,string OrderBy,int StartIndex)
{
..........
}
当我调试它时,在 GetAllCountries 方法 PageSize=-1;OrderBy="",StartIndex=0 被传递...这是怎么回事?
thnx提前...