﻿function tagValidate() {
    
    var str = document.getElementById("ctl00_ContentPlaceHolder1_TextExperience").value;

    if (str.match(/([\<])([^\>]{1,})*([\>])/i)) {
        alert("Remove html tags");
        return false;
    }
   
}
