Prevent Submitting an ASP.Net form Twice

This post describes how to prevent submitting an ASP.Net form twice.  I stumbled across a rather neat and handy way to achieve this by the following: public void PreventMultipleClicks(Button button, Page page) { button.Attributes.Add(“onclick”, “if(Page_ClientValidate()){this.disabled=true;this.value=’Processing Request…’;” + page.ClientScript.GetPostBackEventReference(button, String.Empty).ToString() + … Continue reading

Common App-V 5 Powershell Commands

The following posts contains common App-V 5 Powershell commands.  Assuming a package consisting of the following: Package Name: AlkaneSolutions AlkaneSolutions.appv AlkaneSolutions_DeploymentConfig.xml AlkaneSolutions_UserConfig.xml and a connection group consisting of: Package Name: AlkaneSolutions_ConnectionGroup AlkaneSolutions_ConnectionGroup.xml General Commands Import the App-V 5 module (so … Continue reading

|