A question about JSP vs ASP. In ASP, there is a useful function called Remote Scripting that allows you to separate client side from server side scripting. Hence, if you design a screen and want ONLY some items to be refreshed, you don't have to refresh the whole screen.
For instance, if you have 5 <TR> rows in a <TABLE> tag and you need to refresh only 3 rows, these three rows can have their "rows" refreshed without having the whole screen repainted.
The reason I am asking is because my application does a lot of refresh activity on screens (every 3 seconds!) Hence, I want to be able to do this in JSP before leaving the
"dark side" a.k.a. Microsoft.
What's nice about ASP is, with Remote Scripting, you can accomplish this objective without having IE or Netscape icons spinning at the top every 3 seconds. Hopefully, JSP
has the same functionality.
For instance, if you have 5 <TR> rows in a <TABLE> tag and you need to refresh only 3 rows, these three rows can have their "rows" refreshed without having the whole screen repainted.
The reason I am asking is because my application does a lot of refresh activity on screens (every 3 seconds!) Hence, I want to be able to do this in JSP before leaving the
"dark side" a.k.a. Microsoft.
What's nice about ASP is, with Remote Scripting, you can accomplish this objective without having IE or Netscape icons spinning at the top every 3 seconds. Hopefully, JSP
has the same functionality.