Hello
Is there a possibility to change the message which appears when uploaded file size exceeds IIS limit. Currently I have to limit the file size to 100 Mb so sometimes users get the message
You are probably hitting the file upload limit of IIS7.By default in IIS 7 requestFiltering has the MaxAllowedContentLength property enabled.It specifies, in bytes, the maximum length of the content in a request. The default is 30MB.
To change this value you must edit %windir%\System32\inetsrv\config\applicationHost.config file.
How can I change it? FileTooLargeMsg property doesn't work in this case.
Thanks in advance