Articles (2414) - Page 130

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

2414 records found.
 
Goldytech
Plug-ins / Modules Development with MEF -Part I 
Last updated on: 17 Feb 2010 02:31:31 PM by Goldytech | Views: 13386 | Category: Others |
Votes: 1 | Rating: 5 out of 5
In this post, I show you how to create a decoupled application using Managed Extensibility Framework (MEF)
Anup1252000
Ajax Enabled WCF Service 
Last updated on: 15 Feb 2010 06:51:37 AM by Anup1252000 | Views: 18564 | Category: WCF |
In this article, we are going to see how to use Ajax Enabled WCF Service in a website.
Goldytech
Events Handling in MVVM 
Last updated on: 15 Feb 2010 06:47:31 AM by Goldytech | Views: 26259 | Category: Silverlight |
This article teaches you how can handle events in Model View ViewModel ( MVVM) pattern without using the code behind model. Sample project is attached.
Anup1252000
Creating Multiple Channels in Channel factory in WCF 
Last updated on: 14 Feb 2010 12:24:15 PM by Anup1252000 | Views: 31241 | Category: WCF |
Votes: 1 | Rating: 5 out of 5
In this article, We are going to see how to use Channel factory in WCF.
Anup1252000
Membership provider with WCF 
Last updated on: 14 Feb 2010 12:22:56 PM by Anup1252000 | Views: 37667 | Category: WCF |
Votes: 2 | Rating: 5 out of 5
In this article, we are going to see how to use membership provider with WCF.
Vuyiswamb
How to use Validation Controls in ASP.NET 
Last updated on: 11 Feb 2010 10:02:29 AM by Vuyiswamb | Views: 53602 | Category: ASP.NET AJAX |
Votes: 3 | Rating: 4.33 out of 5
Using Validation Controls is faster than doing validation on the server side. Please note that there are some cases where you can’t set a rule. In that Case you will add those types of validation to your Business Logic Layer, when you validate in your Class Library before sending the Data to the Data Layer to be executed. There is only one reason why Microsoft created Validation controls. The Reason is simple “Never Trust the user input”
Questpond
7 simple steps to run your first Azure Queue program 
Last updated on: 11 Feb 2010 12:51:16 AM by Questpond | Views: 13101 | Category: Azure |
Azure queues help to communicate data between web role and worker role. Web roles are nothing but web application which can be accessed by the end browser. Worker roles are back ground processes which run in the azure system and they do not take direct request from the web. So if we want to pass data to worker roles we need to use Queues. Queues are temporary storage which acts like a bridge between web role and worker role. So you can post data to web role , web role posts data to queues and worker role picks the data from queues to do further processing.
  • Vuyiswamb
    How to consume third party webservice in Asp.net 
    Last updated on: 10 Feb 2010 06:13:40 AM by Vuyiswamb | Views: 141641 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    A lot of newbie’s think of Web services as one complicated beast. I have seen Programmers who know OOP well be failed to understand web services. In this Article i will explain the usage of Web services. There are a lot sites that provide free web services, like Bible Search services, Weather Services, SMS sending services and more. You can look for one of the following services in the following site
    Questpond
    Simple 5 steps to expose WCF services using REST style 
    Last updated on: 01 Feb 2010 06:14:31 AM by Questpond | Views: 33918 | Category: WCF |
    In this article we demonstrate the 4 important steps to enable your WCF service as a REST service.
    Anup1252000
    WCF Hosting in Windows Services 
    Last updated on: 28 Jan 2010 09:54:58 PM by Anup1252000 | Views: 21264 | Category: WCF |
    In this article, we are going to see how to host Windows service in WCF and automatically start and stop the Service by using Button click events.
    Questpond
    Simple 7 steps to run your first Azure Blob Program 
    Last updated on: 24 Jan 2010 07:08:53 AM by Questpond | Views: 12262 | Category: Azure |
    Votes: 1 | Rating: 4 out of 5
    In this section we will create our first program using Azure blobs. This article creates a simple web page where we upload image files which are stored in azure blobs. We have also created a simple search text box which will help us to search the image blobs with the image file name.
    Chikul
    External Style Sheet 
    Last updated on: 24 Jan 2010 05:03:28 AM by Chikul | Views: 11145 | Category: CSS 3 |
    External style sheets have many powerful that make them ubiquitous in professional Web sites: It keeps your website design and content separate. It's much easier to reuse your CSS code if you have it in a separate file. Instead of typing the same CSS code on every web page you have, simply have many pages refer to a single CSS file with the "link" tag. You can make drastic changes to your web pages with just a few changes in a single CSS file. It allows a single style sheet to control the rendering of multiple documents. This results in a time-savings for the author, a savings of space for the web server, and less download time for the user. This method can be used in both HTML and XML.
    Inder2305
    ASP.NET Page Life Cycle 
    Last updated on: 19 Jan 2010 09:56:51 PM by Inder2305 | Views: 59620 | Category: ASP.NET |
    This is my first article on asp.net and I will try to explain the basics of asp.net page life cycle and easy understanding of its usage. Page life cycle depends on whether it is requested for the first time or it is after postback(page request of itself) and finalize to the web server. When a web page is requested to web server, it goes through a series of sequence of steps/events (like initialization, instantiating controls, restoring and maintaining state, running event handler code, and rendering) before it returned back to the web browser.
    Bubbly
    Themes in ASP.Net 2.0 
    Last updated on: 12 Jan 2010 09:32:17 PM by Bubbly | Views: 8336 | Category: ASP.NET |
    This article briefly describes about themes - a beginner's guide
    Puneet20884
    Simple custom Event & Delegates demonstration. 
    Last updated on: 11 Jan 2010 10:35:46 PM by Puneet20884 | Views: 7581 | Category: C# |
    Hi, The article will help you to fire your events (custom events) from the control's events of a Web User Control from the Web Page.