+1  A: 

I'm not sure but I wonder if the members of GetUserRequest need to be public properties rather than public fields?

Decker
That's it!!! changed to properties and it works! In Web Forms it's fine with them being fields. THanks!
Mark
+1  A: 
SendAjax(urlMethod, jsonData, ReturnGetUsers, 'get');

I don't know what goes on in that SendAjax code but that "get" looks like it should be a "post" to me

Chris Simpson
A: 

your GetUserRequest model should be like this

public class GetUserRequest { 
  public int pageNum {get;set;}
  public int pageSize {get;set;}
  public string sortType {get;set;}
  public string sortColumn{ get;set;}
}
Haekal