RedTram News Search Engine
Русский  English Українська  Français  Polski  Deutsch  Italiano  Español  中文   
21 December 2009 year (time zone GMT 00:00)  Number of sources in English: 4957
aspnet.4guysfromrolla.com RSS 2.0

Using Microsoft's Chart Controls In An ASP.NET Application: Enhancing Charts With Ajax

16.12.2009 14:15    aspnet.4guysfromrolla.com
Charts are typically used to provide a static snapshot of data. The chart's underlying data might be based on various user inputs, but in the end the chart, once rendered,represents the end of the reporting workflow. However, other scenarios allow
World    Programming    Articles
Using Microsoft's Chart Controls In An ASP.NET Application: Enhancing Charts With Ajax



Adding a Color Picker Control To Your ASP.NET Application

10.12.2009 15:40    aspnet.4guysfromrolla.com
Over the years I've worked on a number of projects where users could customize some aspect of the site. One such application surveyed a group of employees with and thenmade recommendations on how to best organize the employees into teams.
World    Programming    Articles
Adding a Color Picker Control To Your ASP.NET Application

Removing Unnecessary HTTP Headers in IIS and ASP.NET

03.12.2009 02:10    aspnet.4guysfromrolla.com
Whenever a browser makes an HTTP request to a web server, it sends along several HTTP headers. These HTTP Headers are used to provide the web server with informationto assist with handling the request. For instance, if the browser supports
World    Programming    Articles

An Extensive Examination of LINQ: Introducing LINQ to XML

25.11.2009 20:31    aspnet.4guysfromrolla.com
is an increasingly popular way to encode documents, data, and electronic messages. There are a number of ways to programmaticallycreate, modify, and search XML files. Since its inception, the .NET Framework's has included classes for programmatically working with XML documents.
World    Programming    Articles
An Extensive Examination of LINQ: Introducing LINQ to XML

Using Microsoft's Chart Controls In An ASP.NET Application: Adding Statistical Formulas

19.11.2009 03:30    aspnet.4guysfromrolla.com
The Microsoft Chart controls make it easy to take data from a database or some other data store and present it as a chart. As discussed in , the Chart controls offer a myriad of ways to get data into
World    Programming    Articles
Using Microsoft's Chart Controls In An ASP.NET Application: Adding Statistical Formulas


Using Transactions with SqlBulkCopy

11.11.2009 09:15    aspnet.4guysfromrolla.com
The provides a mechanism for efficiently importinglarge amounts of data into a Microsoft SQL Server database. Compared to importing data by executing one INSERT statement for each record to import, SqlBulkCopy is noticeably faster when importing thousands (or more) records.
World    Programming    Articles

Examining ASP.NET 2.0's Membership, Roles, and Profile - Part 17

05.11.2009 02:58    aspnet.4guysfromrolla.com
Many of the web applications I help build can be classified as in-production line of business applications that receive frequent and ongoing feature enhancements. Typically, these applications have dozens if not hundreds of users who rely on the site each
World    Programming    Articles
Examining ASP.NET 2.0's Membership, Roles, and Profile - Part 17

Using Microsoft's Chart Controls In An ASP.NET Application: Creating Drill Down Reports

29.10.2009 08:11    aspnet.4guysfromrolla.com
Each series in a chart is composed of a set of data points, which are modeled via the DataPoint class. For most chart types, the two key attributes of a datapoint are its X and Y value. For example, in
World    Programming    Articles
Using Microsoft's Chart Controls In An ASP.NET Application: Creating Drill Down Reports

Using SqlBulkCopy To Perform Efficient Bulk SQL Operations

22.10.2009 16:05    aspnet.4guysfromrolla.com
Over the years I've worked on a number of projects that have shared a common requirement - the ability for users to quickly import large amounts of data into a back end SQL Server database. One such project was a
World    Programming    Articles
Using SqlBulkCopy To Perform Efficient Bulk SQL Operations

Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 2

15.10.2009 09:30    aspnet.4guysfromrolla.com
looked athow to use jQuery in an ASP.NET Web Forms application to build a collapsible filtering user interface. When the page is loaded into the user's browser the filtering interface is collapsed. Clicking the filtering interface's title toggles the interface
World    Programming    Articles
Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 2

Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 1

08.10.2009 12:31    aspnet.4guysfromrolla.com
is a lightweight, cross-browser JavaScript library designed to ease JavaScript's most common tasks, including inspecting and manipulating theDocument Object Model (DOM) and making out of band HTTP requests to support AJAX functionality. In plain English, jQuery makes it easy to
World    Programming    Articles
Creating a Filtering User Interface With jQuery In a Web Forms Application: Part 1

Using Microsoft's Chart Controls In An ASP.NET Application: Programmatically Generating Chart Images

02.10.2009 09:34    aspnet.4guysfromrolla.com
The Microsoft Chart controls demos we have examined so far all use the Chart Web control to position the chart image on the web page and to configure a number of its stylisticsettings. For example, while the article showed several
World    Programming    Articles

Using Microsoft's Chart Controls In An ASP.NET Application: Sorting and Filtering Chart Data

24.09.2009 00:01    aspnet.4guysfromrolla.com
The Microsoft Chart controls make it easy to take data - such as sales numbers, website traffic statistics, and so on - and turn it into a chart, which can be saved toan image file or displayed from a web
World    Programming    Articles

Accessing Images On Flickr From An ASP.NET Website Using The Flickr.Net Library

16.09.2009 13:13    aspnet.4guysfromrolla.com
is a popular photo-sharing website. Like many "Web 2.0" and "social" websites, Flickr includes a programmatic interface throughwhich other programs and websites can view and manage photos, comments, groups, tags, and other Flickr assets. I recently started work on a
World    Programming    Articles

Querying a Multi-Tenant Data Architecture

10.09.2009 04:01    aspnet.4guysfromrolla.com
During my career as a consultant and web developer I've worked on a number of "software as a service" (SaaS) web applications. Such web applications are designed to be usedby multiple customers, where each customer is typically a company that
World    Programming    Articles

Building Interactive User Interfaces with Microsoft ASP.NET AJAX: Triggering Full Page Postbacks From An UpdatePanel

03.09.2009 20:21    aspnet.4guysfromrolla.com
The ASP.NET AJAX UpdatePanel provides a quick and easy way to implement a snappier, AJAX-based user interface in an ASP.NET WebForm. In a nutshell, Web controls within the UpdatePanel that would normally cause a full page postback trigger a partial
World    Programming    Articles

Four Little Known, Helpful Methods, Properties, and Features for ASP.NET Developers

26.08.2009 11:11    aspnet.4guysfromrolla.com
The .NET Framework is big. Really big. The System.Web assembly, which contains the guts of ASP.NET, is comprised of nearly 2,000 types, over 23,000 methods, and more than 12,500 properties. And that's not counting any of the functionality added to
World    Programming    Articles

Using Microsoft's Chart Controls In An ASP.NET Application: Rendering the Chart

19.08.2009 13:31    aspnet.4guysfromrolla.com
The Microsoft Chart Controls provide ASP.NET developers with an API and a Web control for creating and displaying charts in a web page. Behind the scenes, the MicrosoftChart Controls take the data to be plotted and dynamically generates an image.
World    Programming    Articles

Exception Handling Advice for ASP.NET Web Applications

13.08.2009 02:13    aspnet.4guysfromrolla.com
Exceptions are a construct in the .NET Framework that are (ideally) used to indicate an unexpected state in executing code. For example, when working with a databasethe underlying ADO.NET code that communicates with the database raises an exception if the
World    Programming    Articles

An Extensive Examination of LINQ: Grouping and Joining Data

06.08.2009 16:00    aspnet.4guysfromrolla.com
As discussed in , one of the cornerstones of LINQ is thestandard query operators, which are a set of extension methods on the IEnumerable interface added to the .NET Framework version 3.5. The standardquery operators can be applied to any
World    Programming    Articles

1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 ... 13 »