Two questions for the price of one
I've seen a few threads about KeepAlive.aspx, but haven't clearly understood how to use it.
I've thought that if I set the AutoEventWireup="True" , that would take care of things for me, but testing on localhost, I see that first page load is still slow, (although I think my user session did not time out)
<%@ Page Language="C#" AutoEventWireup="True" Inherits="DotNetNuke.Common.Utilities.KeepAlive" CodeFile="KeepAlive.aspx.cs" %>
<html>
<head><meta http-equiv="refresh" content="300"></head>
<%=DateTime.Now%>
</html>
Anyone has any ideas? Some people say that you have to keep hitting KeepAlive.aspx with an automatic service or simple app, but is that really true? can't the ASP framework or DNN handle this without browser side interaction?