I want to adjust the following code of a single aspx page "TimeoutTesting" to be a content page belonging to master page:
<%@ Page Language="VB" AutoEventWireup="true" CodeBehind="TimeoutTesting.aspx.vb" Inherits="ExampleApplication.TimeoutTesting" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Idle Timeout Testing</title>
</head>
<body>
<form id="form1" runat="server">
<h4>This page will redirect after 10 seconds of being idle.</h4>
</form>
<!-- Required jQuery Reference -->
<script src="<%= ResolveUrl("~/Scripts/jquery-1.8.2.min.js") %>"></script>
<!-- Idle Timer Plugin Reference -->
<script src="<%= ResolveUrl("~/Scripts/idle-t ...
Go to the complete details ...