Response ASP.Net Tutorial

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb"  Inherits="_Default" %>

<%@ OutputCache Duration="30" VaryByParam="None" %>


    Substitution Control


    
    

     
    

    


File: Default.aspx.vb
Imports System.Web
Partial Class _Default
    Inherits System.Web.UI.Page
   
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
        Response.Cache.SetCacheability(HttpCacheability.NoCache)
        Response.Cache.SetNoStore()
        Response.Cache.SetExpires(DateTime.MinValue)
        Response.Write(DateTime.Now.ToLongTimeString())
    End Sub
End Class