﻿Imports System.Web.Configuration

Partial Public Class Home
    Inherits System.Web.UI.Page

    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Not Page.IsPostBack Then
			WebConfigurationManager.AppSettings("strPage") = "Home"
    End If
	End Sub
End Class