I have done a application on asp.net and I\'m saving a video and audio file is sql server i have a issue with uploading big file over on sever. appls is hosted on ISS7 here
<httpRuntime executionTimeout="3600" maxRequestLength="102400"/>
is about 10Mb (maxRequestLength is in Kb - see http://msdn.microsoft.com/en-us/library/e1f13641(v=vs.100).aspx)
You try set it to 10485760...
With out-of-the-box ASP.NET, you are not going to be able to upload a file that big, because IIS will either timeout or you will exceed the size limitations (read: maxRequestLength setting for IIS).
You have a few options:
Custom HTTP module
NeatUpload is a free option.
Silverlight/Flash option
SWFUpload is a free option.
Asynchronous chunking option
RadAsyncUpload - Telerik's ASP.NET AsyncUpload is a pay option, check website for pricing.