.NET news » ASP.NET ASP.NET Rss Feed

Read Gmail Inbox Message in ASP.NET

Get into our Gmail inbox in our Web Page
28 Apr 2011, 21:34:00   Source: Read Gmail Inbox Message in ASP.NET   Tags: ASP.NET

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
28 Apr 2011, 15:40:00   Source: Using JavaScript View Engines in the ASP.NET MVC   Tags: ASP.NET

Introduction to ASP.NET MVC 3

Introduction to ASP.NET MVC 3 framework and How to create an application using ASP.NET MVC 3
28 Apr 2011, 07:59:00   Source: Introduction to ASP.NET MVC 3   Tags: ASP.NET

ASP.NET MVC Editable DataTable with JQuery

This article show how editable datatabse can be created in ASP.NET MVC using JQuery DataTables Editable plugin
10 Mar 2011, 17:10:00   Source: ASP.NET MVC Editable DataTable with JQuery   Tags: ASP.NET

Custom Membership Providers

This article concentrates on implementing forms authentication for an asp.net mvc application
8 Mar 2011, 10:25:00   Source: Custom Membership Providers   Tags: ASP.NET

Securing configuration files in ASP.Net

Securing configuration files in ASP.Net
8 Mar 2011, 03:01:00   Source: Securing configuration files in ASP.Net   Tags: ASP.NET

OOP in ASP.NET MVC 3.0 despite of the Razor

OOP is still alive, and we can learn Razor (us) to behave this way...
24 Feb 2011, 00:29:00   Source: OOP in ASP.NET MVC 3.0 despite of the Razor   Tags: ASP.NET

ASP.NET Application Development Using MVC

A sample ASP.NET application development using MVC.
23 Feb 2011, 11:03:00   Source: ASP.NET Application Development Using MVC   Tags: ASP.NET

Focusing and Selecting the Text in ASP.NET TextBox Controls

When a browser displays the HTML sent from a web server it parses the received markup into a Document Object Model, or DOM, which models the markup as a hierarchical structure. Each element in the markup - the <form> element, <div> elements, <p> elements, <input> elements, and so on - are represented as a node in the DOM and can be programmatically accessed from client-side script. What's more, the nodes that make up the DOM have functions that can be called to perform certain behaviors; what functions are available depend on what type of element the node represents.

One function common to most all node types is focus, which gives keyboard focus to the corresponding element. The focus function is commonly used in data entry forms, search pages, and login screens to put the user's keyboard cursor in a particular textbox when the web page loads so that the user can start typing in his search query or username without having to first click the textbox with his mouse. Another useful function is select, which is available for <input> and <textarea> elements and selects the contents of the textbox.

This article shows how to call an HTML element's focus and select functions. We'll look at calling these functions directly from client-side script as well as how to call these functions from server-side code.

15 Feb 2011, 18:00:00   Source: Focusing and Selecting the Text in ASP.NET TextBox Controls   Tags: ASP.NET

The Razor View Engine

The new view engine for ASP.NET MVC and WebMatrix combines simplicity and functionality to facilitate clean view development. In this article, I’ll dive into the Razor View Engine, the new default view engine for the ASP.NET MVC framework and WebMatrix products. Razor’s main goal is to simplify view development and to improve developer productivity while providing a clean view infrastructure.

10 Feb 2011, 18:00:00   Source: The Razor View Engine   Tags: ASP.NET