i dont know any direct solution but there is a work-around. put a textbox (invisible) on the page. before uploading, put the text from the word file on the textbox. attach javascript to that textbox for counting characters. if characters are more than your limit of characters. show error message or whatever you want to code. javascript for it : function textCounter(field, countfield, maxlimit) { if (field.value.length > maxlimit) { field.value = field.value.substring(0, maxlimit); } else { countfield.value = maxlimit - field.value.length; } } i hope this is what you were looking for..... a cigarette reduces 2 minutes from ur life while a working day reduces 8 hours.