Tuesday, February 16, 2016

ASP.NET Web Forms set default button on page load

In the Page

Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgsHandles Me.Load
        Main_Form.DefaultButton = "lnkLookUpGuestOrders"
 
    End Sub


Python Logging Best Practices

Python Logging Best Practices Introduction to Python Logging Importance of Logging in Business Applications Logging is an essential ...