News in the Category:
DataSet
Total posts: 451 | Sort by Views | Sort by Hits
The Code Project Latest Articles, May 6, 2013
Views: 245 | Hits 28
An introduction to the capabilities of Scryber for creating dynamic PDF documents with data sources and style....
MSDN: Coding4Fun, May 1, 2013
Views: 220 | Hits 20
Today's "I don't know what to call it" Wednesday project is one that's just a little different, not a game or anything, but something I've not seen mentioned too much recently.Visual Studio has thes...
The Code Project Latest Articles, April 5, 2013
Views: 423 | Hits 37
An introduction to the capabilities of Scryber for creating dynamic PDF documents with data sources and style....
The Code Project Latest Articles, March 11, 2013
Views: 310 | Hits 19
Data export from data table or dataset to excel with formatting...
the telerik blogs, February 19, 2013
Views: 422 | Hits 11
RadPivotGrid comes out with a full-fledged support for OLAP data sources and features a handy OLAP browser....
The Code Project Latest Articles, February 11, 2013
Views: 282 | Hits 24
In this article I will demonstrate how to read a large csv file chunk by chunk (line basis) and populate DataTable object and bulk insert to database....
The MongoDB NoSQL Database Blog, January 14, 2013
Views: 225 | Hits 16
MongoDB text search is still in its infancy and we encourage you to try it out on your datasets. Many applications use both MongoDB and Solr/Lucene, but realize that there is still a feature gap. For ...
The Code Project Latest Articles, December 19, 2012
Views: 634 | Hits 15
Filling in text templates from a data source...
Telerik News RSS Feed, December 11, 2012
Views: 398 | Hits 4
Themes ADDED: TelerikMetroTouch theme that improves the touch-centric user experience of all RadControls. ADDED: Visual Studio2012Light theme inspired by Visual Studio 2012. FIXED: The disabled ...
The Code Project Latest Articles, December 10, 2012
Views: 832 | Hits 50
N-Tier application with WCF Odata service and Entity Framework....
The Code Project Latest Articles, December 10, 2012
Views: 618 | Hits 21
N-Tier application with WCF Odata service and Entity Framework....
The Code Project Latest Articles, November 23, 2012
Views: 495 | Hits 38
This post will show you how you can display date/time using the user timezone (without it being configured anywhere in your application). Storaging dates in your data source The first thing you have t...
The Code Project Latest Articles, October 25, 2012
Views: 812 | Hits 19
Dynamically map a DataTable to type-safe business objects using reflection and generics....
the telerik blogs, October 22, 2012
Views: 448 | Hits 7
The Report templates in Telerik Reporting hold the initial report layout and styling, and allow for creating reports with consistent look and feel. They save time by skipping the repetitive tasks asso...
the telerik blogs, October 17, 2012
Views: 260 | Hits 2
The Report templates in Telerik Reporting hold the initial report layout and styling, and allow for creating reports with consistent look and feel. They save time by skipping the repetitive tasks asso...
the telerik blogs, October 17, 2012
Views: 504 | Hits 2
In Q3 2012 release of Telerik Reporting we are once again introducing multiple improvements and new features in the stand alone Report Designer, which will allow users to be totally independent of Vis...
the telerik blogs, August 28, 2012
Views: 389 | Hits 2
In Part 4 of this mini-series on data binding we looked at Data Conversion. Today we look at binding a UI Element to a list of objects.
The trick in binding to a list, is to teach the control ho...
Julia Lerman Blog - Dont Be Iffy..., August 23, 2012
Views: 554 | Hits 20
Many devs have been waiting for a toolkit so they can consume OData from [Metro] Windows Store apps they are building. The Release Candidate of these tools is now on the download center: WCF Data...
The Code Project Latest Articles, July 31, 2012
Views: 999 | Hits 35
Hi, here we will see how to query a DataSet with LINQ(Language Integrated Query)....
The Code Project Latest Articles, June 19, 2012
Views: 2,283 | Hits 48
Export a DataTable to an Excel file and add format to the contents while writing the Excel file....
the telerik blogs, June 14, 2012
Views: 420 | Hits
It has been a while since we introduced the initial version of the OData binding API for our controls. Despite providing robust OData binding, the old API had one major drawback – it was tedious...
the telerik blogs, June 13, 2012
Views: 441 | Hits 3
Telerik OpenAccess ORM Q2 2012 is already live so hurry up and check all the benefits of upgrading to it on our Whats New page! One of the most interesting additions to this release is the ...
The Code Project Latest Articles, June 1, 2012
Views: 1,189 | Hits 16
In this article is shown what are OData services, how you can create them using the WCF Data Services, and how you can use them...
The Code Project Latest Articles, April 26, 2012
Views: 1,264 | Hits 11
Enhancing simple tables implemented in Java web applications using the jQuery DataTables plug-in....
The Code Project Latest Articles, April 7, 2012
Views: 1,575 | Hits 24
Enhancing simple tables implemented in java web applications using the JQuery DataTables plugin...
The Code Project Latest Articles, March 13, 2012
Views: 1,444 | Hits 36
Description how to implement advanced column filtering using JQuery DataTables...
Joe Brinkman, March 12, 2012
Views: 864 | Hits 3
Continuing our look at Data using the Entity Framework, WCF Data Service and Knockout.js, we see how to Add data to your tables. Well take a look at how to use the Entity Framework/WCF Data Service/Kn...
the telerik blogs, February 9, 2012
Views: 710 | Hits 4
As many of you may know, KendoUI is a really awesome new JavaScript framework that combines everything needed for modern JS development into one sweet package. One of the features it provides is...
Clarity Blogs: ASP.NET, February 3, 2012
Views: 638 | Hits 28
This post is the forth in the series of posts described here. So far we’ve put a data model and data access layer in place use EF Code First, and built out a snappy Index view that uses the jquery Dat...
Joe Brinkman, February 2, 2012
Views: 382 | Hits 3
In this next part of the series, well take a look at how the combination of Entity Framework and WCF Data Services gives you an awesome data access layer in no time flat, Quick, Easy and Powerful....
JohnPapa.net, February 1, 2012
Views: 1,077 | Hits 51
For years when developers heard the term data source control it sent shivers down spines. It often referred to some tightly coupled object that managed binding the source data to the target controls a...
The Code Project Latest Articles, December 21, 2011
Views: 623 | Hits 32
In todays world localization became a must requirement in applications that we develop. We can easily achieve this goal by using recource files for static resources such as exception messages, label t...
The Code Project Latest Articles, December 14, 2011
Views: 1,589 | Hits 38
DataTable people = (DataTable)Session["people"];ExcelFile ef = new ExcelFile();ExcelWorksheet ws = ef.Worksheets.Add("DataSheet");ws.InsertDataTable(people, "A1", true); Response.Clear(); switch...
The Code Project Latest Articles, October 28, 2011
Views: 1,699 | Hits 11
DataTables plugin extension to include range filter...
EggHeadCafe.com New Articles, October 27, 2011
Views: 644 | Hits 35
By giving an Autocomplete field focus or entering something into it, the plugin starts searching for entries that match and displays a list of values to choose from. By entering more characters, the u...
Microsoft Certified Professional Magazine Online | Todays Top Picks, September 2, 2011
Views: 1,418 | Hits 5
The DPM 2012 beta includes a new centralized console and backup and recovery of generic data sources, among others....
The Code Project Latest Articles, August 8, 2011
Views: 1,215 | Hits 67
You're using a GridView web control to list records from a particular data source and you want a delete functionality for each row of data. A dialog must be presented to the user to confirm deletion. ...
The Code Project Latest Articles, July 25, 2011
Views: 988 | Hits 78
A mash-up of sorts built using Microsoft's jQuery Template plugin along with G Birke's jQuery Pagination plugin & a photo-stream from Flickr acting as a data source...
Julia Lerman Blog - Dont Be Iffy..., July 2, 2011
Views: 1,006 | Hits 42
Well, this change really came in the March 2011 CTP but I didn’t realize it until the June CTP was out, so I’ll call it a wash.
WCF Data Services has had a bad problem with inherited types...
Scott on Writing, June 7, 2011
Views: 2,327 | Hits 13
My latest article on DotNetSlackers looks at how to create Excel spreadsheets using NPOI. NPOI is a free, open-source .NET library for creating and reading Excel spreadsheets and is a port of the Java...
the telerik blogs, June 1, 2011
Views: 718 | Hits 5
{download the application complete source code from your Telerik account (register here for free if you are new to Telerik)} One of the great new features in the n...
Pablo M. Cibraro (aka Cibrax), May 25, 2011
Views: 671 | Hits 34
One of the main features that SO-Aware provides is the central repository for storing service artifacts (WSLD, schemas, bindings) and configuration that any organization generates. This central reposi...
Julia Lerman Blog - Dont Be Iffy..., April 14, 2011
Views: 1,087 | Hits 58
Currently, 8 of the 10 videos on Code First and EF 4.1 I have already created for MSDN are online but they are not easy to find. Three of them are on the msdn.com/data/videos page. The others have no...
youve been HAACKED, February 24, 2011
Views: 866 | Hits 41
Renaming a package ID is a potentially destructive action and one we dont recommend doing. Why? Well if any other packages depend on your package, youve effectively broken them if you change your pack...
JonGalloway.ToString(), January 21, 2011
Views: 1,986 | Hits 64
Summary The Entity Framework Code First DbContext doesnt expose the interfaces to support updates when exposed via WCF Data Services. Attempting to save changes results in a fault with the message &q...
ASP.NET Announcements, January 12, 2011
Views: 873 | Hits 84
Hi all,A new example:showing WiseJS with "DataTables plugin for jQuery" - includes CRUD operations "wrapped"
see: WiseJS Projectlink of the site:WiseJS HomeThanks in advance for an...
Andrew Conrads WebLog, October 28, 2010
Views: 1,055 | Hits 31
As of yesterday, we have a new CTP available for WCF Data Services here. This release includes a number of new OData and WCF Data Service features designed to make producing and consuming consum...
Andrew Conrads WebLog, October 28, 2010
Views: 908 | Hits 22
Let the releases roll! New WCF Data Service client for Windows Phone 7. This is an update to the WCF Data Service client that we shipped with .net 4.0 with a few phone specific features added in (e....
DonXML Demsaks All Things Techie, September 9, 2010
Views: 1,081 | Hits 8
If you attended my HDC 2010 session From Datasets to Data Services and want a copy of the slide deck and code, you can get them from my HDC10 Skydrive folder. As usual, the Heartland De...
ASPAlliance.com - The #1 ASP.NET Community, August 24, 2010
Views: 1,111 | Hits 21
Sometimes we need create many reports in multiple threads simultaneously. This may be the development of a web service, or output information from an existing multithreaded application in a certain do...