sondmk header

คอร์สเรียนออนไลน์ฟรี ที่น่าสนใจ (Videos)

รวมเทคนิคการใช้งานโปรแกรมต่างๆ

รวมลิ้งค์ที่น่าสนใจของฉัน




คอร์สเรียนออนไลน์ Free

# คอร์สเรียนออนไลน์ Free
https://www.datacamp.com/


8 Tools สำหรับใช้ในการหาช่องโหว่ WebApp.

https://www.techtalkthai.com/8-vulnerability-exploitation-tools/


การสร้าง Script Matrix.bat

@echo off
color 2
:start
echo %random% %random% %random%
goto start
    

วิธีแก้ไวรัสซ่อนไฟล์ ใน Flash Drive

USE Command: attrib /?
attrib -r -a -s -h /s /d
    

วิธีการลบ Genuine ใน Windows7

1. run cmd as Administrator 
2. slmgr -rearm -> Enter
3. Restart your computer.
    

วิธีสร้าง Autocomplete ด้วย Ajax

Credit: https://www.ninenik.com/สร้างฟังก์ชัน_autocomplete_ให้ใช้งานแบบง่าย_ด้วย_ajax-209.html
Credit: http://www.thaicreate.com/community/autocomplete-ajax-php-mssql.html
    

Bootstraps Modal การสร้าง Model Dialog ด้วย Bootstraps


<button type="button" class="btn btn-info btn-lg" data-toggle="modal" data-target="#myModal">Open Modal</button>


<div id="myModal" class="modal fade" role="dialog">
  <div class="modal-dialog">

    
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">×</button>
        <h4 class="modal-title">Modal Header</h4>
      </div>
      <div class="modal-body">
        <p>Some text in the modal.</p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div>

  </div>
</div>
    

Ref. https://www.w3schools.com/bootstrap/bootstrap_modal.asp


Ajax Load Text

<script>
function loadDoc() {
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("demo").innerHTML =
      this.responseText;
    }
  };
  xhttp.open("GET", "ajax_info.txt", true);
  xhttp.send();
}
</script>
    

Ref. https://www.w3schools.com/js/tryit.asp?filename=tryjs_ajax_first



Framework

Library


เครื่องมือพัฒนาเว็บ



การออกแบบและพัฒนาเว็บไซต์


Download SourceCode



copyAllright © 2016 soundmk.com