Sunday, February 24, 2008

File Uplood for Videos in asp.net with C#


<%@Page Language="C#"%>


<br />File Uploading in ASP.Net Using C# - Demo <br />



<%if(!Page.IsPostBack)
{
%>

File uploading in ASP.Net using C# - Demo












Select a file to upload




<%}%>














Please feel to contact the author Sriram for
your valuable suggestions and feedbacks.


in web.config

maxRequestLength=4096 for 4MB uploading

maxRequestLength=8192 for 8MB uploading

maxRequestLength=16384 for 16MB uploading

maxRequestLength=65536 for 64MB uploading

No comments:

Using Authorization with Swagger in ASP.NET Core

 Create Solution like below LoginModel.cs using System.ComponentModel.DataAnnotations; namespace UsingAuthorizationWithSwagger.Models {     ...