If you’re using SQLite for your small apps then using GUI interface for database creation can be handy. There is no official GUI tool for manipulating SQLite database. There are some 3rd party gui tools for sqlite. Few tools are either discontinued or are still packaged with old version of sqlite. Continued…
Source Code Escrow
A source code escrow is a part of software escrow service which protects software sourcecode in the events like bankruptcy, trade secrecy etc. Source code escrow service is preferred by many businesses that outsource their work to third part software services. Software escrow agent is a media between two parties which is usually requested by licensee who is going to maintain the software. Source code escrow service becomes important in the events when licensor unable to maintain the software and in such case source code will be released to licensee with the agreement of software escrow service. Continued…
JIT Compilers in .NET Environment
JIT (Just in time) compiler is a part of the .NET runtime execution environment. Unlike traditional compilers JIT doesn’t
compile the full class file in one shot. Compilation is done on function basis or file basis. JIT compilation has advantage
over traditional compilation that heavy parsing of original source code is avoided. Compilation in .NET is done on the basis
and it’s in steps most of the time. Continued…
ASP.NET- Validation Controls
Whenever you want to check the data entered by users is valid or not then you are supposed to add validation controls. ASP.NET has validation framework that allows developers to create client-side and server-side controls with minimum coding. Continued…
How to create a master page in visual studio ?
To keep the core layout of your pages consistent you can use master page in your asp.net application. Master pages allow you to keep layout consistent within all the pages of your asp project. There are few more
advantages of using master pages in your project: Continued…