Skip to main content

Posts

Showing posts from 2016

[Obsolete] Azure package unpack and repack

Azure package There are a lot of possible scenarios of Azure deployment. Most of them are based on package that we can define and create with Visual Studio. If you need to change package use Visual studio to repack your project. To prepare specific web . config file, use different build configuration with transformation (web . config . release, web.config.debug etc.) Only when it's not possible to use Visual Studio to repack Azure package, then it's possible to repack it the way described below.

[Obsolete] Azure deployment. Connectionstrings

Azure resource group This template is used to create an azure deployment project . Based on a wizard , it generates file with list of console commands to perform the automatic deployment , with or without visual studio. After the project is created it can be configured and modified. Those types of projects are flexible and has a great possibility

[Obsolete] Caching GET requests in IE

GET request The main goal of GET request is to show some data to the user: page, part of the page, control or just data. GET request shouldn’t contain any data changes or any function that leads to changes in the system to be done. Based on that it’s logical to cache GET requests, until page update after another POST request is needed.