Location from CD:

Installation Options:

After running the SqlRun_Tools.msi, new items will be displayed on Microsoft SQL Server 2005 menu





Dim sessionid As Guid = Guid.NewGuid()
Session(sessionid) = sessionid.ToString
Private Sub bntLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bntPage1.Click
Response.Redirect("home.aspx")
End Sub
Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init
InitializeComponent()
CheckSessionTimeout()
End Sub
Private Sub CheckSessionTimeout()
If Session("sessionid") Is Nothing Then
Response.Redirect("login.aspx")
End If
End Sub