SBP Romania

Cloud computing: To each his own part of the cloud

Cloud computing has been with us for a while now, but it started just recently to draw attention to it, particularly because of the large scale Internet applications that client-oriented companies have built as services. Or what we now call SaaS, or software as a service. The “while” I’m talking about started, presumably, when people woke up …

Cloud computing: To each his own part of the cloud Read More »

To outsource or to insource?

For decades, the debate between choosing outsourcing over insourcing and vice versa has been standing without a clear answer. “Which of the two methods is the most suitable for an organization?” is still an unanswered question. This happens because outsourcing, as any other method or business strategy, has its ups and downs, advantages and disadvantages. Furthermore, the economical background …

To outsource or to insource? Read More »

ASP.NET – Including CSS and JS file references

If you’re wondering what is the best way to include CSS and JS file references in ASP.NET pages, here is a quick guide that outlines the available options and shows which approach suits each situation. First, the most basic approach, can be done from within the head tag, as in the example below: <head id=”Head1″ runat=”server”> <title>Title …

ASP.NET – Including CSS and JS file references Read More »

ASP.NET – AJAX client side network calls

ASP.NET AJAX is a Microsoft solution that provides support for implementing XMLHttp requests. This type of request is different from the normal web requests by the format and amount of data it sends to and receives from the server – it is a minimal (partial) postback, sending and receiving only the important data, instead of transferring the entire …

ASP.NET – AJAX client side network calls Read More »

Making a Response.Redirect from plain HTML or JavaScript

The standard approach for making a URL redirection in ASP.NET is to use a Redirect call: Response.Redirect(“http://www.example.com/mypage.aspx”) What happens behind the scenes: the server (IIS) sends to the browser a simple HTTP Response, containing a message code (“302”), which essentially tells the browser to issue a new HTTP Request, for obtaining the new destination URL. …

Making a Response.Redirect from plain HTML or JavaScript Read More »

The Ajax technology

In a broader sense, Ajax represents a cluster of technologies that were so designed as to create a developer comprehensive and user-end facile language. At both ends, developer and remote user, Ajax creates and delivers rich web applications on a desktop application basis, providing lower bandwidth usage and speeding up loading page time by retrieving data from …

The Ajax technology Read More »

Scroll to Top