.NET news » Search results

Search results for query "asp" (244):

Converting ASP.NET control check box list into drop-down check box list.

How to create your own drop-down check box list control
2010-11-30 10:21:00   Source: Converting ASP.NET control check box...   Tags: ASP.NET

Bulk CRUD operation using XQuery and reflection in asp.net

Easy approach to implement bulk CRUD operation using Xquery, reflection in asp.net with example

ASP.NET Scopes Framework: a powerful alternative to Forms and MVC

This article introduces a brand-new web dev pattern and provides a framework based on it. It is a long-waited dev approach providing a unique and elegant solution to all Forms and MVC fundamental problems and bringing Web 2.0 site development task to a new level of flexibility and transparency.
2010-11-23 19:59:00   Source: ASP.NET Scopes Framework: a powerful...   Tags: ASP.NET

Improving ASP.NET MVC MUSIC STORE more usability with DotNetAge in 30 minutes

Using the DotNetAge to upgrade the ASP.NET Mvc Music Store add widgets and security features just in minutes.
2010-11-23 09:31:00   Source: Improving ASP.NET MVC MUSIC STORE...   Tags: Security

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.

Working with Resource files in asp.net programatically.

This article will represent how to work with Resource Files dynamically.
2010-11-10 02:33:00   Source: Working with Resource files in   Tags: ASP.NET

Formatting Dates, Times and Numbers in ASP.NET

Formatting is the process of converting a variable from its native type into a string representation. Anytime you display a DateTime or numeric variables in an ASP.NET page, you are formatting that variable from its native type into some sort of string representation. How a DateTime or numeric variable is formatted depends on the culture settings and the format string. Because dates and numeric values are formatted differently across cultures, the .NET Framework bases its formatting on the specified culture settings. By default, the formatting routines use the culture settings defined on the web server, but you can indicate that a particular culture be used anytime you format. In addition to the culture settings, formatting is also affected by a format string, which spells out the formatting details to apply.

The .NET Framework contains a bounty of format strings. There are standard format strings, which are typically a single letter that applies detailed formatting logic. For example, the "C" format specifier will format a numeric type as a currency value; the "Y" format specifier displays the month name and four-digit year of the specified DateTime value. There are also custom format strings, which display a apply a very specific formatting rule. These custom format strings can be put together to build more intricate formats. For instance, the format string "dddd, MMMM d" displays the full day of the week name followed by a comma followed by the full name of the month followed by the day of the month. For more involved formatting scenarios, where neither the standard or custom format strings cut the mustard, you can always create your own formatting extension methods.

This article explores the standard format strings for dates, times and numbers and includes a number of custom formatting methods I've created and use in my own projects. There's also a demo application you can download that lets you specify a culture and then shows you the output for the standard format strings for the selected culture.

Effective Paging with GridView Control in ASP.NET

Paging must be effective for large scaleable application. Without smart and effective paging and sorting for huge amount of data user request take more time and use more resource.

Fluent Filters - Global Action Filters for ASP.NET MVC 2

This article describes a small library for ASP.NET MVC, that can be used as a facility for registering global filters. It is similar to Global Filter in ASP.NET MVC 3, but with different implementation and features.

ASP.NET MVC Chart Control

Shows how chart controls are used in ASP.NET MVC.
2010-11-07 01:24:00   Source: ASP.NET MVC Chart Control   Tags: ASP.NET