What are the best way to display text from database using MVC
I have created a MVC application its working fine. I have created a view which开发者_JS百科 have few viewdata variables. I am filling these with my database values, and they are updated in loop. This method take 40-50 seconds to display actual page contents. So is there any other way to display the contents which we get till now and do refresh it till all contents are loaded.
Please let me know how can I refresh the page ?
Thanks, Laxmilal Menaria
The problem you are facing is very typical nowadays. The most popular solution is to use AJAX and show data as they are retrieved.
精彩评论