I want to generate html component in the server side of the asp.net mvc or controller.
My current approach: I want to generate one html table in the controller function, It will return html table code string. then i used the ajax call this controller function and get the return value. finish I use the jquery get the DIV object and innerHTML from controller return value to display table on DIV. if small data it will normal display.But I get the data is large data, IE will be forced to close and take up a lot of memory. So i would like use the server side handle it.
Do you have any way to deal with it?