I am trying to determine the file size limit for my file upload control.
Below is the HTML code snippet:
<input id="uplTheFile" style="WIDTH: 318px; HEIGHT: 22px" type="file" size="80" name="uplTheFile" runat="server">
I have checked the code but could not find any information. The attribute size = 80
seems unclear to me. I also searched online, but all I found was that it is an optional attribute. I am unsure if it defines the file size limit.
Can anyone provide some insight?