ASP.Net: Is it possible to cache the js-proxies generated by scriptmanager?
- by AndreasKnudsen
We have the following code:
<asp:ScriptManager runat="server">
...
<Services>
<asp:ServiceReference Path="~/JSONServices/ProfileService.svc" />
</Services>
...
This results in a Javascript proxy found in /JSONServices/ProfileService.svc/js.
This Javascript has content expiry set to the same time it was called (so it is never cached on the client). Is it possible to have the clients cache these proxies for some time?