Tuesday, 29 September 2015

Partial-Page Rendering

Partial-page rendering removes the need for the whole page to be refreshed during postback. To do this, put the components under ContentTemplate as follow:


<asp:UpdatePanel ID="updatePanel" runat="server">
    <ContentTemplate>
        .
        .
        .      
    </ContentTemplate>
</asp:UpdatePanel>


SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...