Is there any specific order in which the external CSS or Scripts should be called in a aspx page which could help a bit in decreasing the page load time?
i.e
script type="text/javascript" src="../Includes/JavaScript/jquery.ui.tabs.js"
link href="../Includes/css/ui.all.css" rel="Stylesheet" type="text/css"
or
link href="../Includes/css/ui.all.css" rel="Stylesheet" type="text/css"
script type="text/javascript" src="../Includes/JavaScript/jquery.ui.tabs.js"
Or any other order?