Posts

Showing posts from July, 2020

Login Page Template | Quiz Application part-12 | asp.net mvc Project

Html: @{     Layout = null; } <link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <!------ Include the above in your HEAD tag ----------> <!DOCTYPE html> <html> <head>     <title>My Awesome Login Page</title>     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">     <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>     <link rel="stylesheet" href="https://use.fon...

Admin Panel Dashboard Template | Quiz Application part-11 | asp.net mvc Project

Html: <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-T8Gy5hrqNKT+hzMclPo118YTQO6cYprQmhrYwIiQ/3axmI1hQomh7Ud2hPOy8SP1" crossorigin="anonymous"> <body class="home">     <div class="container-fluid display-table">         <div class="row display-table-row">             <div class="col-md-2 col-sm-1 hidden-xs display-table-cell v-align box" id="navigation">                 <div class="logo...

How To Upload Large File using postman |Web API to upload Large files |Tutorial in Urdu & English

Video Link:  https://www.youtube.com/watch?v=yhz8DiPa7HU Copy this code in your Controller :  -------------------------------------------------------------------------------------------------------- [HttpPost]         public async Task<bool> Upload()         {             try             {                 var fileuploadPath = ConfigurationManager.AppSettings["UploadFile"];                 var provider = new MultipartFormDataStreamProvider(fileuploadPath);                 var content = new StreamContent(HttpContext.Current.Request.GetBufferlessInputStream(true));                 foreach (var header in Request.Content.Headers)                 {          ...