.NET news » Search results

Search results for query "javascript" (51):

Using JavaScript View Engines in the ASP.NET MVC

In this article is explained how client-side view engine can be used in ASP.NET MVC
2011-04-28 15:40:00   Source: Using JavaScript View Engines in the...   Tags: ASP.NET

An Introduction to AJAX and Atlas with ASP.NET 2.0

Traditionally, web applications have left a lot to be desired from a user experience standpoint, due primarily to the "request/response" lifecycle. Any interaction with a page typically requires a postback to the web server (a "request"), which then performs any server-side tasks needed and returns the updated page's markup (the "response"). Outside of intranet-based applications, such behavior adds a bit of a lag when interacting with a page. One approach to improving the end user's experience is to use AJAX. AJAX is a technique for using JavaScript and the XMLHttpRequest object to make light-weight HTTP requests back to the web server from client-side script. Once a response is received, the web page's layout can be seamlessly refreshed using JavaScript to message the page's Document Object Model (DOM) and CSS settings. AJAX-enabled pages provide a slick, responsive user experience, making web-based applications function more like desktop-based ones.

In the past adding AJAX type behaviors to your web application was difficult and came with a steep learning curve since AJAX encompasses a bevy of technologies (JavaScript, XML, XmlHttpObject, HTTP requests, DHTML, and so on). With the advent of the ASP.NET Atlas framework, however, there is much less of a reason to feel so overwhelmed when it comes to AJAX!

2006-06-20 19:00:00   Source: An Introduction to AJAX and Atlas with ASP.NET 2.0   Tags: Ajax ASP.NET

How to click/select Row in ASP.NET GridView or HTML Table

Make entire Table Row clickable/selectable by adding "onclick" event and formatting features via Javascript and CSS3
2011-12-10 08:48:00   Source: How to click/select Row in ASP.NET GridView or HTML Table   Tags: ASP.NET

Light Speed Inline Editing Using ASP.NET AJAX and Web Services. Part I.

javascript+AJAX solution for inline edititng in grid.
2008-04-06 10:42:00   Source: Light Speed Inline Editing Using ASP.NET AJAX and Web...   Tags: Ajax

Creating Wijmo: The New JavaScript Library in Town

Wijmo contains over 30 widgets built on jQuery and jQuery UI that can help you build a better Web.

2011-03-30 19:00:00   Source: Creating Wijmo: The New JavaScript...   Tags: GUI

Dynamic Font Size using HTML and JavaScript

Describes a method to build web pages that provide an ability for the user to change the font size dynamically.
2010-11-16 09:33:00   Source: Dynamic Font Size using HTML and   Tags: Build

Accessing Server-Side Data from Client Script: Using WCF Services with jQuery and the ASP.NET Ajax Library

Today's websites commonly exchange information between the browser and the web server using Ajax techniques - the browser executes JavaScript code typically in response to the page loading or some user action. This JavaScript makes an asynchronous HTTP request to the server. which then processes the request and, perhaps, returns data that the browser can then seamlessly integrate into the web page. Two earlier articles - Accessing JSON Data From an ASP.NET Page Using jQuery and Using Ajax Web Services, Script References, and jQuery, looked at using both jQuery and the ASP.NET Ajax Library on the browser to initiate an Ajax request and both ASP.NET pages and Ajax Web Services as the entities on the web server responsible for servicing such Ajax requests.

This article continues our examination of techniques for implementing lightweight Ajax scenarios in an ASP.NET website. Specifically, it examines how to use the Windows Communication Foundation, or WCF, to serve data from the web server and how to use both the ASP.NET Ajax Library and jQuery to consume such services from the client-side.

Client Insight: Getting Started with Knockout

This inaugural Client Insights column explains how to get started with the Knockout JavaScript library by learning how and where to use it.
2012-01-31 17:00:00   Source: Client Insight: Getting Started with Knockout   Tags: Examples

RIA Frameworks: Building Data-Centric Web Apps with ASP.NET MVC and Ext JS

JavaScript frameworks provide an alternative to plug-ins for rich web app front ends. We'll show you how to use the Ext JS library and ASP.NET MVC to quickly build a robust data-centric solution.
2011-03-02 18:00:00   Source: RIA Frameworks: Building Data-Centric Web Apps with...   Tags: Build

Web Socket Server

An example of an implementation of a web socket server and how to interact with it from JavaScript
2010-06-03 13:59:00   Source: Web Socket Server   Tags: Examples Internet