MVC in Code Igniter
MVC stands for Model View Controller. Those of you not familiar with MVC, it is a software design pattern. Basically it aims with separation of concern. Each component in your website architecture model has to do what it exactly needs to do.
For instance, your database connection class has to connect to the database and handle the connection state. It should not do any other work apart from the connection establishment to your DB. The bottom line is your components should not be over loaded.
Web development in Wavemaker
Tweet Web development has evolved a lot till date. It has come through various advancements in visual components one could think of, leading to various user experience techniques. This has certainly changed the way we develop software nowadays. One such software that gives more power and control of web development is Wavemaker. Wavemaker is a [...]
Invoking Managed Code from SQL Server
Tweet One of the flagship features in SQL Server 2005 is the ability to write stored procedure using any language supported in .NET. This feature provides greater flexibility for developers to implement complex logic in CLR (Common Language Runtime) stored procedure which is not that easy to program using T-SQL stored procedure. There are two [...]
Usability Testing
Tweet What is an Usability Testing? Usability testing is a way of improving the user interactions with a product. Usability testing is conducted on various consumer goods, electronic devices,websites and web applications.We will be discussing the usability testing on web sites and web applications here. High volume web site development intensively uses lot of usability [...]



Dynamic Controls in Cross Page Postback
In Asp.Net world a Cross Page Postback refers to passing form data from one web page to another. In Asp.Net this is handled differently when compared to classic Asp or any other server side languages. In this tutorial let us see how a static Asp.Net control and dynamic Asp.Net controls are handled in a Cross Page Postback.
Asp.Net controls are nothing but the form elements and dynamic Asp.Net controls here, I mean the controls that are created on the fly during runtime.