Monday, 3 December 2012

Browsers back button diasable


Write the below code in your HTML body tag(in on load method)

<Script type="text/javascript">
   //window.history.forward();
    function noBack()
{
window.history.forward();
    }
</Script>



DBT - Models

Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...