I have a server side Data Table without any attribute searching or sorting. And now I want to add these attribute.
According to the searches I have, I have to define variables in my controller like this:
public int Start = Convert.ToInt32(Request["start"]);
But my controller does not understand the word Request and gives an error
How can I resolve this error?
Request["start"]and what kind of data contained inside it? Please give details about your controller action to make sure, provide your minimal reproducible example.