Home » 2011 (Page 14)

Archive for 2011

Disable back button

On the internal main page, create “log-off” or “exit” link. In code behind of the same page write sub to disable browser back button, like this: [ Control-Panel.aspx.vb ] Protected Overloads Overrides Sub OnPreRender(ByVal e As EventArgs)         ‘/ disable back button         MyBase.OnPreRender(e)         Dim strDisAbleBackButton As String         strDisAbleBackButton = “<script language=’javascript’>” & […]

Operation must use an updateable query

Server Error in ‘/TestSite’ Application Operation must use an updateable query. Issue: Denied right to ASP.NET Machine Account to modify access db Resolution – Make sure Internet Guest Account has a read/write rights – Open application folder properties and add ASP.NET Machine Account if does not exist – Permit the ASP.NET Machine Account to modify […]