Revision #4
Tue, May 5, 2009 9:50 PM
by rtpHarry
|
Connection String
The connection string specifies information about how to initialize a connection to a data store. It contains keyword/value pairs. the first pair is always the Provider or Driver. The following pairs will correspond with the data required to initialize the
|
Revision #2
Tue, Oct 14, 2008 7:13 PM
by mbanavige
|
Dynamic Data
ASP.NET Dynamic Data is a web application scaffolding framework that shipped with Service Pack 1 of .NET 3.5. Using either LINQ to SqL or LINQ to entities, it exposes tables in a database by encoding it in the URI of the ASP.NET web service. The data table
|
Revision #6
Tue, Dec 16, 2008 9:20 AM
by senthil.christcollege@gmail.com
|
ADO.NET
ADO.NET stands for ActiveX Data Objects for .NET. It refers to the suite of data access technologies used to manipulate databases. ADO.NET is part of the .NET Framework.. ADO.NET provides access to datasources starting from SQL Server / Oracle to XML based
|
Revision #2
Sun, Dec 21, 2008 3:18 PM
by mbanavige
|
Serialization
The process of serialization converts an object into a form so that it can be transported across the network or can be placed in a storage location. The storage location could be a physical file, database or ASP.NET Cache. The state of the Object is preserved
|
Revision #7
Thu, Aug 27, 2009 5:44 PM
by Suthish nair
|
Export Image to Excel using c#
Here am trying to show how we can export an image to excel file. References Used: Microsoft.Office.Interop.Excel; Link for downloading the dlls and install: Office XP PIAs Add Microsoft.Office.Interop.Excel.dll to the bin folder. Add office.dll to the bin
|
New
Wed, May 20, 2009 7:37 AM
by techfriend
|
Shuffle DataRow in DataTable
We all know that we can sort the rows in DataTable by making a simple use of DefaultView. But now if i want a few conditional rows to be shuffled in the table; i dont have anything inbuilt in .net.Now if I want to select a few conditional rows in the table
|
New
Wed, Sep 23, 2009 7:40 PM
by beast_b9
|
Writing RssHandler base on sql database...c#
%@ WebHandler Language="C#" Class="RssHandler" %>using System;using System.Web;using System.Data.Common;using System.Configuration;using System.Data;using System.Xml;public class RssHandler : IHttpHandler { bool IHttpHandler.IsReusable
|
New
Sat, Sep 26, 2009 8:04 PM
by pcaloia
|
Using ASP.NET MVC and OpenXML api to stream Excel files.
I’ve been heads down for the last several weeks Scrumming and it has been a while since I’ve updated my blog so I figured if I was going to keep your interest I should give you something really useful. We’ve been transitioning from web forms to ASP.NET MVC
|
Revision #2
Sat, May 10, 2008 9:07 PM
by SGWellens
|
Connecting to SAP data from ASP.NET
Here is a good articlefor connecting toSAP from ASP.NET.... You will need to download the SAP.Net.Setup2003.msi file from the SAP site first. http://help.sap.com/saphelp_nw2004s/helpdata/en/51/d5470940fd564b888f4beb9523fa6c/content.htm
|
Revision #4
Thu, Dec 25, 2008 9:54 PM
by SGWellens
|
Export To CSV file
First let’s see what the CSV file is: CSV file is a text based file in which data are separated by comma. It can be opened by excel so you can use excel functionality. Each row of data including the title is in separate line. Meanwhile, each row has data separated
|
Revision #3
Sat, Oct 11, 2008 8:24 AM
by PaulSpencer
|
LINQ
From MSDN: "The LINQ Project is a codename for a set of extensions to the .NET Framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Basic with native language syntax for queries and provides class
|
Revision #5
Mon, Feb 4, 2008 8:00 AM
by vik20000in
|
Data Binding
Nearly all the controls in ASP.NET have properties that can be databound to. Articles Jesse Liberty has a fine article on Data Binding in ASP.NET 2.0 over on O'Reilly from 2005. John Papa talks about Data-Bound Controls in his MSDN Article from 2005. Tutorials
|
Revision #3
Mon, Feb 4, 2008 8:00 AM
by vik20000in
|
DataSource Controls
FromScottGu:Scott Mitchell is also writing some great data articles on using the ASP.NET 2.0 DataSource controls for the excellent www.4GuysFromRolla.com ASP.NET site. If you don't visitwww.4GuysFromRolla.com, I highly recommend checking it out (it has
|
New
Mon, Feb 4, 2008 8:00 AM
by shanselman
|
Data-centric UI Controls
Both the GridView and ListView are new Data Controls in Visual Studio 2008. Scott Guthrie has a great introduction that uses the ListView Control. He builds a product catalog from scratch with complete control over the CSS and HTML. Watch Kashif Alam's Webcast
|
Revision #2
Mon, Feb 11, 2008 3:27 PM
by mbanavige
|
Web Services
A Web service is defined by the W3C as "a software system designed to support interoperable Machine to Machine interaction over a network." Web services are frequently just Web APIs that can be accessed over a network, such as the Internet, and executed
|
Revision #5
Sun, Sep 7, 2008 12:45 PM
by ssg31415926
|
Active Directory & LDAP
There are many questions that come up regularly in the forums. These recipes address some of those questions. RecipesAccessing Active DirectoryHow to query Active Directory without hard-coding the domain name - in C# and VB.Net Testing your directory access
|