Re: how to increase upload size of a documnet upto 20 MB….in an asp.net application. Aug 04, 2013 08:25 AM|LINK You likely will need to update your maxRequestLength within your web.config to handle files and uploads that are large (as the default limit is often 4MB). This can be handled within the section of your web.config or the section if you want to handle it at the IIS level (both are probably a good idea). It’s important to know that maxAllowedContentLength is measured in bytes and maximumRequestLength is measured in kilobytes when settings these values so you’ll need to adjust them accordingly if you plan on handling much larger files : If you wanted to use 20MB as a limit, you would need to change the values to the following respectively : If you don’t see these sections within your existing web.config file, you’ll simply need to copy them in. Updating the maxRequestLength property is likely going to be the easiest method of handling this, however there are alternatives such as libraries like NeatUpload, which are designed to handle large files and can handle uploading files as streams to your preferred method of storage.
Find in ANY table in your database
I needed to search in all tables for a certain GUID, I used this SP in MS SQL Server 2016: Find a GUID (or anything) in ANY table in your database! | CSharpner.com
How to copy tables from one database to another in SQL Server
See heading: Using SQL Server Export / Import wizard
Solution for responsive images covering entire container and keeping aspect ratio
This solution is probably already out there somewhere on the interwebs, but I write it down for now.
I’ve been working with a Bootstrap 4 based website a lot lately.
Today I got the requirement to make an background image adjust to the height of its sibling column but at the same cover the entire background of its container.
I want the entire container box to be covered by the background image and still keeping its aspect ratio in various screen sizes, it’s ok with clipping and stretching (if image is to small). Here is a solution:
html:
<div class="row"> <div class="col-6"> <div class="teaser-container" id="teaser1"> ...column 1 html content... </div> </div> <div class="col-6"> <div class="teaser-container" id="teaser2"> ...column 2 other various height html content... </div> </div> </div>
css:
#teaser1 { height: 100%; background-image: url('/globalassets/top-image.jpg'); background-repeat: no-repeat; background-position: center; background-size: cover; }
Throttling your API in ASP.NET
Can someone DOS attack your API and bring down your webservice? Could I hit your API at 100 requests a second and bring down your server?
Source: Throttling your API in ASP.NET
How can I enable Assembly binding logging? – Stack Overflow
Automatic visual tests with Episerver: Test after a Deploy | Alf Nilsson talks
Optimisation and validation tools for web development – Growing with the Web
Using git-flow to automate your git branching workflow
Blazor: a technical introduction
What is Blazor? It’s a framework for browser-based (client-side) applications written in .NET, running under WebAssembly. It gives you all the benefits of a rich, modern single-page application (SPA) platform while letting you use .NET end-to-end, including sharing code across server and client. The announcement post covers more about the intended use cases, timescales, and so on.
Source: Blazor: a technical introduction