Django at a glance Django is a python based open source free web framework It follows the MTV (Model-Template-View) architectural pattern. It also appears to be a MVC framework, but you call the Controller the “view”, and the View the “templa ...
Python Development In Visual Studio 2017
Python at a glance An interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991 It is a server side programming language. Targeted for almost all platforms A modular langu ...
Tips about Uploading 4 GB file on Web Server
Normally We can't upload files of size > 4 MB.If we have to upload file of size maximum 4 GB then the web.config file must be contained the following codes 1 <configuration> 2 </system.web> 3 <httpRuntime maxRequestLength="412 ...
SQL Query to Find the 3rd Oldest Employee
Solution #1: find employee 1 SELECT * FROM 2 ( 3 SELECT TOP 3 ROW_NUMBER() OVER(ORDER BY DateOfBirth) AS row,* FROM Employee 4 ) Emp 5 WHERE row=3 Solution 2: 1 SELECT TOP 1 * FROM 2 ( 3 SELECT TOP 3 * FROM Employee ORDER BY DateOfBirth 4 ) Emp ...
All about file upload control in web application
We upload any type of files from client to server using html element 1 <input id='myFile' type="file" /> And using ASP.NET control 1 <asp:FileUpload ID='myFile' runat="server" /> We can restrict to upload only some types of fil ...