Browser script No-cashe

In HTML <meta http-equiv=”Expires” content=”Tue, 01 Jan 2000 12:12:12 GMT”> <meta http-equiv=”Pragma” content=”no-cache”> In ASP/IIS: http://support.microsoft.com/support/kb/articles/Q234/0/67.asp <% Response.CacheControl = “no-cache” %> <% Response.AddHeader “Pragma”, “no-cache” %> <% Response.Expires = -1 %> In PHP: http://www.php.net/manual/en/function.header.php < ?php Header('Cache-Control: no-cache'); Header('Pragma: no-cache'); ?> In COLD FUSION: <cfheader name=”Expires” value=”#Now()#”> <cfheader name=”Pragma” value=”no-cache”> In JSP: http://www.jguru.com/faq/view.jsp?EID=377&page=2 <% response.setHeader(“Cache-Control”,”no-cache”); …

Mail php headers

$to = ‘info@eee.com’; $headers = “MIME-Version: 1.0\n”; $headers .= “Content-type: text/html; charset=utf-8\n”; $headers .= ‘From:info@eee.com’. “\r\n” .              ‘Bcc: eee@eee.gr’ . “\r\n” .              ‘Bcc: eee@eee.gr’ . “\r\n”; $headers .= “Reply-To:eee\n”;  $headers .= “X-Priority: 1\n”; $headers .= “X-mailer: DAUMED\n”;  $headers .= “X-MSmail-Priority: High\n”; $subject=”eee Contact …

Fixed positioning CSS

Fixed positioning This post will hopefully be updated when I have done a little more (like explaining stuff and publishing combinations of three, maybe four columns), for now: Fixed header Fixed header and left-sidebar Fixed header and right-sidebar Fixed header and footer Fixed left-sidebar Fixed left-sidebar and header Fixed left-sidebar and right-sidebar Fixed left-sidebar and …

How to turn off the right-click functionality in Internet Explorer 5.0 or a later version

The following article describes how to use FrontPage 2000 to turn off the right-click functionality in Microsoft Internet Explorer versions 5.0 or a later version. These examples use JavaScript in an attempt to discourage users from saving copyrighted images to their computers.