I am going to upload a file using file upload control in asp.net. now i want to get the file name without extension using java script. I want to check the file name should only be an integer format
$(function () {
$('#<%=File1.ClientID %>').change(function () {
var uploadcontrol = document.getElementById('<%=File1.ClientID%>').value;
})
})
source
share