﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>CodeDigest.com Latest Articles</title><link>http://www.codedigest.com</link><description>Latest articles hosted on CodeDigest.com.</description><copyright>Copyright 2008 - 2009 CodeDigest.com. All rights reserved.</copyright><item><title>Using CKEditor 3.x[aka FCKeditor] in ASP.Net</title><description>CKEditor is formerly called as FCKEditor. It is an open source WYSIWYG editor which is called FCKEditor till 2.x version and got renamed to a new brand called CKEditor and continued its evolution from 3.0 version. Moving forward, we will see how the new CKEditor can be used in an ASP.Net website.</description><link>http://www.codedigest.com/Articles/ASPNET/315_Using_CKEditor_3x[aka_FCKeditor]_in_ASPNet.aspx</link><pubDate>2/4/2010 7:38:53 AM</pubDate></item><item><title>Multiple Ways to Call Javascript Function from CodeBehind in ASP.Net</title><description>JavaScript is one of the very versatile scripting languages that are used in Web applications. Even though we can accomplish everything in server side programming using C#, it is still advisable to do some of the things like validations, etc in clientside using JavaScript. In ASP.Net 1.x, we don’t have that much support in the framework to hook JavaScript functions from the asp.net page dynamically. </description><link>http://www.codedigest.com/Articles/ASPNET/314_Multiple_Ways_to_Call_Javascript_Function_from_CodeBehind_in_ASPNet.aspx</link><pubDate>2/2/2010 7:24:59 AM</pubDate></item><item><title>Customizing Fields in ASP.Net Dynamic Data Website-Part 2</title><description>We have started an article series “Customizing Fields in ASP.Net Dynamic Data Website” to customize the fields displayed in ASP.Net Dynamic data website.
In part 1 of this article series, we have seen how to customize an existing field template. We will continue the article series with part 2 to include a new field template for a datatype that can be used only at specific places.</description><link>http://www.codedigest.com/Articles/ASPNET/312_Customizing_Fields_in_ASPNet_Dynamic_Data_Website-Part_2.aspx</link><pubDate>1/28/2010 7:22:19 AM</pubDate></item><item><title>SEO Friendly Improvements in ASP.Net 4.0</title><description>The next version of .Netframework is 4.0, which is currently in its beta 2 stage includes many new ground breaking features. With ASP.Net 4.0, Microsoft shipped some very new good features that are really helpful to make your pages search engine friendly. </description><link>http://www.codedigest.com/Articles/ASPNET/311_SEO_Friendly_Improvements_in_ASPNet_40.aspx</link><pubDate>1/23/2010 9:29:56 AM</pubDate></item><item><title>Calling a WebService using jQuery in ASP.Net</title><description>jQuery library has become one of the most widely used javascript library that heavily simplified the client side scripting. Apart from DOM parsing and other advantages, jQuery library excelled so much in AJAX communications. Moving forward, we will see how to use jQuery Ajax methods to call a WebService method in ASP.Net.</description><link>http://www.codedigest.com/Articles/jQuery/310_Calling_a_WebService_using_jQuery_in_ASPNet.aspx</link><pubDate>1/13/2010 6:00:55 AM</pubDate></item><item><title>Customizing Fields in ASP.Net Dynamic Data Website-Part 1</title><description>As I said in my previous articles, a real business world application requires a lot of customization on basic templates of dynamic data website to achieve our final goal. In this article, we will see how to customize a field displayed in the Dynamic Data website. </description><link>http://www.codedigest.com/Articles/ASPNET/309_Customizing_Fields_in_ASPNet_Dynamic_Data_Website-Part_1.aspx</link><pubDate>1/8/2010 10:08:42 AM</pubDate></item><item><title>WPFMystify3D – A Screen Saver using WPF 3D Geometry</title><description>To set a .Net application as a screen saver, you get the assembly built, change the .EXE file into .SCR file and store it in the windows/system32 folder. Ensure that you have resources available (like picture files) in the right path.This article illustrates the creation of a screen saver using WPF 3D Geometry model.</description><link>http://www.codedigest.com/Articles/WPF/308_WPFMystify3D_–_A_Screen_Saver_using_WPF_3D_Geometry.aspx</link><pubDate>12/26/2009 8:29:07 AM</pubDate></item><item><title>Executing ASP.Net Application from Network Share in IIS 6.0</title><description>There are situations where we need to put our asp.net application files on a network share instead of keeping it in local file system. When we try to execute our application after making the above change, it will throw an error Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.Read more..</description><link>http://www.codedigest.com/Articles/ASPNET/307_Executing_ASPNet_Application_from_Network_Share_in_IIS_60.aspx</link><pubDate>12/18/2009 11:01:07 AM</pubDate></item><item><title>Creating Custom Pages in ASP.Net Dynamic Data Website</title><description>Dynamic Data Website is one of the new features released with ASP.Net 3.5 which simplified building data driven website to a greater extent. In this article, we will see how to build a custom page for a particular database object while the other database objects can still use the default templates. </description><link>http://www.codedigest.com/Articles/ASPNET/306_Creating_Custom_Pages_in_ASPNet_Dynamic_Data_Website.aspx</link><pubDate>12/11/2009 11:10:37 AM</pubDate></item><item><title>Using GroupBy in LINQDatasource Control for Grouping Data</title><description>Grouping data is one of the most common activities we do with any data driven websites. LINQDatasource control allows us to group data based on one or more columns with the help of GroupBy property and Select property.  Moving forward, we will see how to group the data when using LinqDataSource control.</description><link>http://www.codedigest.com/Articles/ASPNET/303_Using_GroupBy_in_LINQDatasource_Control_for_Grouping_Data.aspx</link><pubDate>12/4/2009 8:28:27 AM</pubDate></item><item><title>The concept of Covariance and Contravariance in .Net 4.0</title><description>With .NET 4.0, the CLR supports covariance and contravariance of types in generic interfaces and delegates. Before dwelling into these new changes, let us get a quick view on the concept of variances in simple terms. Read more.</description><link>http://www.codedigest.com/Articles/Framework/300_The_concept_of_Covariance_and_Contravariance_in_Net_40.aspx</link><pubDate>11/25/2009 12:35:59 AM</pubDate></item><item><title>Numeric Converter - Going Mobile!</title><description>The Numeric Converter allows you to convert a number of any bases to another base. </description><link>http://www.codedigest.com/Articles/CSHARP/296_Numeric_Converter_-_Going_Mobile!.aspx</link><pubDate>10/24/2009 12:44:52 AM</pubDate></item><item><title>Introduction to ASP.Net Dynamic Data Website</title><description>Most often, we build applications that works on the data stored in the database. Understanding this need, Microsoft shipped a new feature with ASP.Net 3.5 called Dynamic Data Website that enables us to build a data driven websites very easily. </description><link>http://www.codedigest.com/Articles/ASPNET/292_Introduction_to_ASPNet_Dynamic_Data_Website.aspx</link><pubDate>10/14/2009 9:40:13 AM</pubDate></item><item><title>Search Engine Friendly URL's Using Routing in ASP.Net 3.5</title><description>Routing is a technique which enables us to use a descriptive, search engine and human friendly URL’s for ASP.Net application to access a resource. In this article, we will implement a simple routing mechanism in ASP.Net 3.5. </description><link>http://www.codedigest.com/Articles/ASPNET/294_Search_Engine_Friendly_URLs_Using_Routing_in_ASPNet_35.aspx</link><pubDate>10/11/2009 10:37:06 AM</pubDate></item><item><title>Using Stored Procedure with LINQDatasource Control in ASP.Net</title><description>At times, it may be required to use stored procedures for the data operations for certain conditions with LINQDataSource control. It is possible to configure the LINQDatasource to use stored procedures instead of the default LINQ to do the database interactions through the LINQ to SQL classes. Read more in this article..</description><link>http://www.codedigest.com/Articles/ASPNET/293_Using_Stored_Procedure_with_LINQDatasource_Control_in_ASPNet.aspx</link><pubDate>10/1/2009 10:39:03 AM</pubDate></item><item><title>Building Efficient Search Page Using QueryExtender control in ASP.Net 4.0</title><description>Building a search page is one of the very common and repeated tasks we do in any data driven websites. To do this, we will build a select query with where clause based on the search parameter suppplied through the input controls on the page. Understanding this need, Microsoft has introduced a new extender control called QueryExtender control with ASP.Net 4.0(Currently in beta) release that works with LINQ.</description><link>http://www.codedigest.com/Articles/ASPNET/289_Building_Efficient_Search_Page_Using_QueryExtender_control_in_ASPNet_40.aspx</link><pubDate>9/8/2009 9:01:21 AM</pubDate></item><item><title>Advanced Usages of SqlDataSource Control in ASP.Net-PART 2</title><description>In Part 1 of this article series we have seen some of the advanced usages of SqlDataSource control.  In detail, Part 1 discussed on some of the usages like cancelling databind when using SqlDataSource control, getting total number of rows returned, accessing output parameters and changing the sql query at runtime. We will continue this articles series with part 2 to understand some more advanced usages.</description><link>http://www.codedigest.com/Articles/ASPNET/287_Advanced_Usages_of_SqlDataSource_Control_in_ASPNet-PART_2.aspx</link><pubDate>9/5/2009 12:46:00 AM</pubDate></item><item><title>Creating Music Video Box Using Windows Presentation Foundation(WPF)</title><description>This article explains the creation of a Music Video Box using Windows Presentation Foundation 3D Geometry and Media classes to play music albums as chosen by the user.</description><link>http://www.codedigest.com/Articles/WPF/286_Music_Video_Box_in_WPF.aspx</link><pubDate>9/1/2009 8:25:56 AM</pubDate></item><item><title>New Features in ASP.Net 4.0-PART 2</title><description>In Part1 of this article series, we have seen the enhancements made on controlling viewstate, ClientID generation of server controls and some SEO enhancements in ASP.Net 4.0. Moving forward, we will see some more new features the ASP.Net 4.0 offers.</description><link>http://www.codedigest.com/Articles/ASPNET/285_New_Features_in_ASPNet_40-PART_1.aspx</link><pubDate>8/30/2009 6:38:37 AM</pubDate></item><item><title>New Features in ASP.Net 4.0-PART 1</title><description>Recently, Microsoft released the newer version of its IDE Visual Studio 2010 beta 1 and .Net FX 4. Recently, Microsoft released the newer version of its IDE Visual Studio 2010 beta 1 and .Net FX 4. </description><link>http://www.codedigest.com/Articles/ASPNET/284_New_Features_in_ASPNet_40-PART_1.aspx</link><pubDate>8/29/2009 9:23:57 AM</pubDate></item></channel></rss>