Fairfeeds.com - Stories tagged with .NET
1
Votes

Web 2.0 | Email Template using C#

posted by farooqkaiserfarooqkaiser 42 days, 11 hours, 38 minutes ago
Wednesday, January 27, 2010 6:30:38 PM GMT
In this article, i will examined how to build template to store email data such as body and subject. The template is an XML file that will store the static text with dynamic Tags. The dynamic tags are just like variables that get replaced by the real data. Here is a sample template. 1: 2: Now, i will load the template in C# and Tags will be replaced with Real Data. Here is C# sample code. 1: XmlDocument xdox = new XmlDocument(); 2: xdox.Load(Template); // Load your template here 3:str... (more)
Category: Technology | Clicked: 1 | Comment | | Source: www.fairnet.com
Tags: .NET, C#, Email, XML
1
Votes

Web 2.0 | Custom Sorting with Jquery UI

published 162 days, 13 hours, 4 minutes ago posted by farooqkaiserfarooqkaiser 172 days, 9 hours, 40 minutes ago
Tuesday, September 29, 2009 5:04:12 PM GMT Saturday, September 19, 2009 8:28:26 PM GMT
In this article, i will examine how to build custom sorting Using Jquery UI. The jQuery UI Sortable plugin makes selected elements sortable by dragging with the mouse. Please see here for more details. In my demo application i will create an XML file to store the custom settings that will hold the sorting order. Here is our XML File. (more)
Category: Technology | Clicked: 0 | Comment | | Source: www.fairnet.com
Tags: .NET, ajax, ap.net, C#, Linq
1
Votes

Web 2.0 | The ABC of WCF

published 167 days, 16 hours, 4 minutes ago posted by farooqkaiserfarooqkaiser 177 days, 11 hours, 57 minutes ago
Thursday, September 24, 2009 2:04:34 PM GMT Monday, September 14, 2009 6:11:31 PM GMT
WCF is Microsoft's next-generation programming platform and runtime system for building, configuring and deploying service-oriented applications. It enables developers to build secure, reliable, transacted solutions that integrate across platforms and interoperate with existing investments. Most of the WCF functionality is included in a single assembly called System.ServiceModel.dll, located in the System.ServiceModel namespace. What are the ABCs of WCF? ABC stands for address, binding, and contract, t... (more)
Category: Technology | Clicked: 1 | Comment | | Source: www.fairnet.com
Tags: .NET, C#, WCF, WebService
1
Votes

Web 2.0 | Localizing ASP.NET MVC

published 176 days, 11 hours, 43 minutes ago posted by farooqkaiserfarooqkaiser 185 days, 3 hours, 14 minutes ago
Tuesday, September 15, 2009 6:24:57 PM GMT Monday, September 07, 2009 2:54:18 AM GMT
Localization is the process of customizing your application for a given culture and locale. The .NET framework offers the following namespaces and classes to facilitate the localization.System.Globalization (The System.Globalization namespace contains classes that define culture-related information, including the language, the country/region, the calendars in use, the format patterns for dates, currency, and numbers, and the sort order for strings) CutureInfo Provides information about a specific culture... (more)
Category: Technology | Clicked: 0 | Comment | | Source: www.fairnet.com
Tags: .NET, ASP.NET MVC, C#, Localization
1
Votes

Web 2.0 | Implementing HTTP File Upload with ASP.NET MVC

published 213 days, 13 hours, 55 minutes ago posted by farooqkaiserfarooqkaiser 215 days, 16 hours, 20 minutes ago
Sunday, August 09, 2009 4:13:24 PM GMT Friday, August 07, 2009 1:48:04 PM GMT
In this article, I will explore how to upload a file using ASP.NET MVC. Since MVC framework does not use server control, so it will be interesting to see how file upload works in MVC. Here is my view that renders a form for uploading files (more)
Category: Technology | Clicked: 0 | Comment | | Source: www.fairnet.com
Tags: .NET, ASP.NET MVC
12
Votes

Simple .NET Profanity Filter - James Newton-King

posted by raazzraazz 249 days, 1 hour, 39 minutes ago
Sunday, July 05, 2009 4:28:49 AM GMT
A website I am working on right now accepts public comments, and one of the requirements is to do a basic check for dirty language. Surprisingly for such a common problem I wasn’t able to find any code on the net that did what I wanted and so I’ve ended up writing my own. The Censor class is pretty simple: you give it a list of words you want to censor, either simple text or with wildcards, and the censor will star out any matches it finds.IList (more)
Category: Technology | Clicked: 3 | Comment | | Source: james.newtonking.com
Tags: .NET, C#
13
Votes

planetgeek.ch » Enum’s are Evil

posted by raazzraazz 249 days, 1 hour, 41 minutes ago
Sunday, July 05, 2009 4:27:00 AM GMT
In C# dotnet the class Enum is heavily used. Some geek’s argue that the Enum’s “improve code clarity and and reduce the probability of invalid values. … Enum’s are self-documenting. (more)
Category: Technology | Clicked: 0 | Comment | | Source: www.planetgeek.ch
Tags: .NET, C#
13
Votes

Microsoft SharePoint Team Blog : Service Pack 2 Update.

posted by raazzraazz 249 days, 1 hour, 43 minutes ago
Sunday, July 05, 2009 4:25:07 AM GMT
The public update for the Service Pack 2 expiration date issue is now available for download. The update can be applied before or after Service Pack 2 installation. If the update is applied prior to installing Service Pack 2 it will prevent the expiration date from being improperly activated during installation of Service Pack 2, if it is applied after... (more)
Category: Technology | Clicked: 1 | Comment | | Source: blogs.msdn.com
Tags: .NET, Microsoft, Sharepoint, Tools