.NET news » Search results

Search results for query "grid" (22):

WebGrid - The plug and play grid

Discover how easy it can be to build browser-friendly HTML from your datasources with WebGrid. Maintaining a datasource is plug and play with WebGrid. Set a few properties and WebGrid will generate a browser friendly data form, and handle all database interaction for insert, update, and datasource delete using safe parameterized queries generated by the grid. A user friendly system message is generated if user input is not valid.

Native WPF 4 PropertyGrid

Repackage of Workflow Foundation's property grid for general use
2010-06-14 16:44:00   Source: Native WPF 4 PropertyGrid   Tags: WPF

CGridListCtrlEx - Grid Control Based on CListCtrl

A custom draw CListCtrl with subitem editing and formatting
2011-05-30 09:25:00   Source: CGridListCtrlEx -   Tags: Components

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

Grid computing using C# Script and .NET Remoting

Using C# script engine inside network using .net remoting.
2010-04-10 17:23:00   Source: Grid computing using C# Script and...   Tags: C# Performance

ASP.NET e-Commerce GridView with Product Comparisons

Demonstrates an e-commerce style grid with product comparison checkboxes, sorting, images in a database, expandible/collapsible product summary, selectable row display, and product comparison page.
2010-10-04 09:37:00   Source: ASP.NET e-Commerce GridView with...   Tags: ASP.NET

Implementing the Store Locator Application Using ASP.NET MVC (Part 1)

Back in May 2010 I wrote a three-part article series titled Building a Store Locator ASP.NET Application Using Google Maps API, which showed how to build a simple store locator application using ASP.NET and the Google Maps API. The application consisted of two ASP.NET pages. In the first page, the user was prompted to enter an address, city, or postal code (screen shot). On postback, the user-entered address was fed into the Google Maps API's geocoding service to determine whether the address, as entered, corresponded to known latitude and longitude coordinates. If it did, the user was redirected to the second page with the address information passed through the querystring. This page then queried the database to find nearby stores and listed them in a grid and as markers on a map (screen shot).

Since the WebForms store locator application was published, several readers have emailed me to ask for an ASP.NET MVC version. I recently decided to port the existing WebForms application to ASP.NET MVC. This article, the first in a two-part series, walks through creating the ASP.NET MVC version of the store locator application and pinpoints some of the more interesting and challenging aspects. This article examines creating the ASP.NET MVC application and building the functionality for the user to enter an address from which to find nearby stores. Part 2 will examine how to show a grid and map of the nearby stores.

2010-08-17 19:00:00   Source: Implementing the Store Locator Application Using ASP.NET...   Tags: Build

Filio - Distributed File Management

distributed(grid) file search, find duplicates, full text index, using http/tcp connections, very high speed using multi-threading, automatically detect physical harddisks and accelerate with NTFS USN Journal, and customized serialization caching hash and full text with RBAC access control
2010-08-02 17:43:00   Source: Filio - Distributed File Management   Tags: Internet

WPF and Silverlight Super-Productivity: ListBoxes

ListBoxes suck. Except that statement is not true anymore. Not in WPF and Silverlight anyway, where ListBoxes have evolved from simplistic controls to true workhorse objects. ListBoxes have been around since the beginning of Windows (and other GUIs) and have served a pervasive yet simple purpose, which can be summed up as “show me a list of labels in a list with a scroll bar.” A premise that has its uses but is not sophisticated enough for advanced data presentation, which is why developers often use special controls such as “data grids” or “list views” among others. In WPF and Silverlight, however, ListBoxes are so flexible and powerful that they are the first choice for just about anything. In fact, WPF originally shipped without a data grid control since ListBoxes all but eliminated that need. Developer perception, however, was different and the power of the ListBoxes went largely unnoticed. That is reason enough for me to write an article that displays the ease, flexibility, and power of ListBoxes.

2010-12-27 18:00:00   Source: WPF and Silverlight Super-Productivity: ListBoxes   Tags: Other

Implementing the Store Locator Application Using ASP.NET MVC (Part 2)

Last week's article, Implementing the Store Locator Application Using ASP.NET MVC (Part 1), started a two-part article series that walked through converting my ASP.NET store locator application from WebForms to ASP.NET MVC. Last week's article stepped through the first tasks in porting the store locator application to ASP.NET MVC, including: creating the new project; copying over stylesheets, the database, scripts, and other shared content from the WebForms application; building the HomeController; and coding the Index and StoreLocator actions and views.

Recall that the StoreLocator action and view prompts the user to enter an address for which to find nearby stores. On form submission, the action interfaces with the Google Maps API's geocoding service to determine if the entered address corresponds to known latitude and longitude coordinates. If so, the user is redirected to the StoreLocatorResults action (which we create in this article) that displays the nearby stores in both a grid and as markers on a map. Unlike the StoreLocator action created in Part 1, the StoreLocatorResults action uses a more intricate model and a strongly-typed view.