How to disable Client Side Caching for a specific web page?

Greetings,

I have a specific web application that I need to disable client side caching for some real time reporting (using a $$ViewTemplate form).

Is there a way to do this on the domino server?

For ASP.Net, I have found that you can use the following. Can it be translated for our apps?:

<%@ OutputCache Location=“None” VaryByParam=“None” %>

To disable client side caching programmatically:

protected void Page_Load(object sender, EventArgs e)



{



    Response.Cache.SetCacheability(HttpCacheability.NoCache);



}