asked on
CHILD PAGE
If Session(":LoginID:") Is Nothing Then
Dim btnInvalid As Button = CType(Page.Master.FindControl("btnInvalidSession"), Button)
Dim val As String = btnInvalid.ClientID
Dim msgDesc As String = "if (alert('Your session is no longer valid.\n\n Please login again.')) document.getElementById('" & val & "').click();"
ScriptManager.RegisterClientScriptBlock(Me.Master, Me.Master.GetType(), "Invalid Session", msgDesc, True)
Exit Sub
End If
MASTER PAGE - ASPX
<asp:Button ID="btnInvalidSession" runat="server" style="display:none;" OnClick="InvalidSessionButton_Click" />
MASTER PAGE - code behind
Protected Sub InvalidSessionButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnInvalidSession.Click
Try
Response.Redirect("login.aspx")
Catch ex As Exception
ex.ToString()
End Try
End Sub
The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications
TRUSTED BY