Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件输入字段,base64 对要发送到我的处理程序(IHttpHandler)的选定图像进行编码。
最大值是多少,或者我如何知道我可以发送给我的处理程序的最大请求大小是多少?
该文件不会大于 500kB,但我不知道这是否太大,并且考虑到 base64 编码的性质,它会使文件大小膨胀约 33%。
更新:感谢大家的有用答案和评论!
最大请求大小由 web.config 中的设置驱动:
<httpRuntime maxRequestLength="nnnn" />
默认值为 4MB。
http://msdn.microsoft.com/en-us/library/system.web.configuration.httpruntimesection.maxrequestlength(v=vs.100).aspx