CSharpFeeds - All your C# feeds in one place.

Friday, September 01, 2006

CS Dev Guide: Send Emails

by Keyvan Nayyeri via Keyvan Nayyeri on 9/1/2006 5:15:33 PM

Any web application needs a way to send emails to different kinds of its users.  This capability is provided in Community Server from early versions.  Sending emails is one of easiest parts of Community Server development. To send emails in Community Serve you have two options: using pre-defined email templates for some common situations or create an email manually. First option is easy to implement.  Community Server has provided several default templates for your email ...

[ read more ]

Load and save objects to XML using serialization

by T-C via The Code Project Latest Articles on 9/1/2006 4:03:00 PM

A C# program to demonstrate loading and saving an object to an XML file using XML serialization encapsulated in a wrapper class. ...

[ read more ]

XmlDocument to DataSet

by carl@vinebranches.com via i am a camera on 9/1/2006 3:22:00 PM

XmlDocument to DataSet in two lines. This is the quickest conversion I've found so far. XmlDocument xdoc = MethodReturnsXmlDocument(); // convert to DataSet DataSet ds = new DataSet(); ds.ReadXml(new XmlNodeReader(xdoc)); ...

[ read more ]

XmlDocument to DataSet

by carl camera via i am a camera on 9/1/2006 3:22:00 PM

XmlDocument to DataSet in two lines. This is the quickest conversion I've found so far. XmlDocument xdoc = MethodReturnsXmlDocument(); // convert to DataSet DataSet ds = new DataSet(); ds.ReadXml(new XmlNodeReader(xdoc)); ...

[ read more ]

DLinq queries: Mathematics functions

by via Bill Wagner: C# Development Blog | MySmartChannels on 9/1/2006 2:12:16 PM

Avg, Sum, Min, Max, and T-SQLThis post will cover the Count/Sum/Min/Max/Avg category for DLinq. I’m changing the format because what’s interesting in DLinq isn’t the C# code, it’s how the DLinq library translates the query operators (and your lambda expressions) into SQL.  So, I’m going to concentrate less on the code and its output, and more on what SQL gets generated from your queries.  Unfortunately, I don’t know the exact mechanism LinqToSql uses ...

[ read more ]

Caching in O/R Mappers and Data Layers

by ssmith via Blog on 9/1/2006 2:08:02 PM

Frans Bouma, creator of LLBLGen, MVP, and all around very smart guy, wrote yesterday about the ‘myth’ that caching inside an Object-Relational (O/R) mapper makes queries run faster or makes the O/R mapper more efficient.  I think he’s missing a few key usage scenarios (and, what’s more, I think he generally has a dislike of caching for whatever reason, which may bias his opinion), which I’d like to examine here. First, let me look at his definition of a cache, ...

[ read more ]

muSQLe - SQL Server query invocation framework

by Messir via The Code Project Latest Articles on 9/1/2006 1:55:00 PM

An easy and strongly-typed way to invoke queries and stored procedures from your code ...

[ read more ]

Reflector for Visual Studio

by paltman via Shifting Bits by Patrick Altman: Latest Entries on 9/1/2006 3:59:36 AM

I am a big fan of Lutz Roeder's .NET Reflector and am happy to see an add-in version of his tool made available.  Being able to open and use this fantastic tool within the IDE is another great time saver. Tags: lutz roeder, .net reflector, reflector, reflection, visual studio, visual studio add in ...

[ read more ]

Retrieve Oracle BLOB and save as a JPG using ASP.NET 2.0

by schola via on 9/1/2006 12:00:00 AM

The attached code snippet in this article shows how to retrieve Oracle BLOB column data and save as a JPEG file using ASP.NET 2.0 and C#. ...

[ read more ]

Subscribe

New Feed

Product Spotlight

Recently Updated Sources

Legal Note

The content of the postings is owned by the respective author. CSharpFeeds is not responsible for the contents of the postings. This site is automatically generated and cannot be reviewed for abusive content. If you find abusive content on CSharpFeeds, please contact us. Designated trademarks and brands are the property of their respective owners. All rights reserved.

Advertise with us