0
Good morning, everyone!
I have a page in ASP that has basically 2 Divs. A div where there is a panel that connects to a database and takes 3 information from there (a kind of Dashboard) and a div where there is a panel of messages that keep passing (slider).
What happens: this page is currently with an automatic refresh by HTML (tag) and until it works well! But, for reasons of arriving an hour there will be more messages in this panel, will not give time to read all before the page load. I’d like to see if there’s any way to reload only the contents of the DIV panel that picks up the database data. I saw some forms with Jquery, but most use a "load" function that needs to load a content inside, for example an html. There would be no way to do this directly in the document without any other file load?
Probably Ajax + javascript solves your problem...
– Felipe Avelar
Rodrigo took a look at this question/answer: http://answall.com/q/6626/129
– Sergio
You need to use Ajax + JSON + Jquery. Your data must be dynamic to the point of consuming JSON objects.
– MarceloBarbosa