HI..i want to share the small tips ..to upload maximum amount file in upload control..
Normally by default you can upload minimum 3mb or 4mb file size..Suppose you want to upload more number size file then you can do some coding in web.config file…
<system.web>
<sessionState timeout="20"/>
<httpRuntime executionTimeout="240" maxRequestLength="8192" />
</system.web>
<sessionState timeout="20"/>
<httpRuntime executionTimeout="240" maxRequestLength="8192" />
</system.web>
Here it will upload up to 8MB file size…
I hope this helpful to all….
0 comments:
Post a Comment