Category: full

  • Usual Methods to transfer data from Page To Page in ASP.NET MVC

    Preamble: In ASP.NET ( like in PHP and other Web frameworks) there are 2 clear entities: Server ( code on the WebServer ) and Client( the HTML interpreted by the browser and javascript). Server and Client shares same cookies – means Client and Client both can read and write cookies. Transfer from the Client to…

  • Caching in .NET

    In every application you have some data that is more read-more,write-once or twice. For example you can have the list of Cities of a country,the list of Countries of the world or list of exchange currency. This data is modified rarely. Also,you can have data that is not very sensitive to be real-time,such as the…

  • Intercept errors

    Errors interception and rising Description We will speak here about the errors raised by external conditions (bugs) and the errors rose by the application. There is not application without bugs. The bugs are not desired for an application – but programmers are human beings and,by consequence,they cannot verify every possible path that go an application…

  • Logging and instrumentation

    Why There are at least two reasons for an application to register what tfhe user do. The first one and the most important is to see what is happening when a user has an error: what have been done,on which path did he go and what additional data(method parameters,usually) do you need for reproducing the…

  • Saving Setting for Windows Forms

    Saving and retrieving application settings Every application that I have made needs at minimum two things,that we will put on the generic term “ settings “: 1. “remember” their state – information that are read at the beginning,write at the end of the program . We will name those “local settings” because there are different…