Articles (2414) - Page 153

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.
 
Questpond
Agile Development FAQ - Part 2 
Last updated on: 26 Dec 2008 04:34:42 AM by Questpond | Views: 7145 | Category: ASP.NET |
This article is a quick FAQ of Agile. By reading this you will understand fundamentals of Agile and different ways of implementing Agile.
SheoNarayan
Creating dynamic image from text 
Last updated on: 23 Dec 2008 08:49:14 PM by SheoNarayan | Views: 25997 | Category: ASP.NET |
This article describe how to create an image from text in asp.net with C#.
Questpond
SALT and PEPPER – 3 TIER and LINQ 
Last updated on: 23 Dec 2008 06:23:51 AM by Questpond | Views: 24923 | Category: .NET Framework |
Votes: 2 | Rating: 5 out of 5
In this article we will understand core reasons of why we should use LINQ. Three tier / N-Tier is now a standard in almost all projects. New architectures which are coming up like MVC, MVP have the fundamental base and thinking of 3-tier methodology. So we have termed the 3-tiers as SALT, in other words we can not stay with out it. LINQ (Pepper) on other hand is a new technology which helps us create execute queries against disparate data sources like ADO.NET, Custom objects, XML etc. So it’s not a needed thing (Pepper) but it does helps to remove lot of issues related with traditional 3-tier. So let’s make a nice Three-tier LINQ dish using SALT and PEPPER. So we will first understand Three-tier, issues with it and then see how LINQ helps us to improve the same.
Questpond
Agile Development FAQ - Part 1 
Last updated on: 20 Dec 2008 06:38:20 AM by Questpond | Views: 14426 | Category: Management |
This article is a quick FAQ of Agile. By reading this you will understand fundamentals of Agile and different ways of implementing Agile
Questpond
Service Oriented Architecture (S.O.A) Interview question - Part 1 
Last updated on: 19 Dec 2008 05:21:30 AM by Questpond | Views: 42260 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
This section will cover Service Oriented Architecture (SOA) questions.
Questpond
Using FUNCTION POINTS to quote a Software 
Last updated on: 18 Dec 2008 05:55:59 AM by Questpond | Views: 11515 | Category: Management |
If you give more quote you lose the project, if you give less quote you will end up doing social service to clients and probably also loss. In this tutorial, we will discuss mainly "Function Point" from practical point of view.
Sbanerjee
Passing Values between user controls using Events and Delegates 
Last updated on: 09 Dec 2008 12:57:37 PM by Sbanerjee | Views: 83866 | Category: .NET Framework |
Simplest solution to pass values from one user control to another user control on a web page
  • Sbanerjee
    Session maintenance in SQL Server for .Net Applications 
    Last updated on: 27 Nov 2008 05:46:06 AM by Sbanerjee | Views: 10477 | Category: ASP.NET |
    Listing all the steps to show how to configure the SQL Server so that our .Net application can store and retrieve the Session values in and from SQL server.
    Majith
    Reading Selected Element from XML using ASP.NET, C# 
    Last updated on: 25 Nov 2008 09:14:21 AM by Majith | Views: 52224 | Category: ASP.NET |
    I am going to explain about the reading data from xml and filtering particular element and binding into Grid view using ASP.NET ,C#.
    Questpond
    Model View Presenter 
    Last updated on: 25 Nov 2008 02:10:54 AM by Questpond | Views: 14025 | Category: ASP.NET |
    In this article we will understand MVP, execute a sample project with MVP, implement the same using windows UI and then finally we will discuss about the differences between MVP and MVC.
    Patidar.shekhar
    Printing part of the page 
    Last updated on: 23 Nov 2008 07:09:33 AM by Patidar.shekhar | Views: 6176 | Category: .NET Framework |
    Printing part of the page.
    Questpond
    Reusable Navigation and workflow for both Windows and Web using Microsoft UIP blocks 
    Last updated on: 21 Nov 2008 05:30:56 AM by Questpond | Views: 6803 | Category: ASP.NET |
    All application UI have common logics like navigating to the next UI, state management and work flow. By coding all the above three logic in the code itself you tie up all the three aspects with a specific UI type like windows and web. This article will discuss how we can use UIP to achieve the UI portability.
    SheoNarayan
    DataTable - Adding, Modifying, Deleting, Filtering, Sorting rows & Reading/Writing from/to Xml 
    Last updated on: 18 Nov 2008 09:45:13 AM by SheoNarayan | Views: 704687 | Category: ADO.NET |
    Votes: 6 | Rating: 5 out of 5
    In this article, I am going to explain how to Add, Modify, Delete, Sort, Filter rows of the DataTable and also loading data from xml and writing data into xml. I will also talk about writing/reading Schema of the DataTable.
    SheoNarayan
    Iterative Statements in C# (Loops in C#) 
    Last updated on: 17 Nov 2008 11:33:23 AM by SheoNarayan | Views: 15471 | Category: C# |
    Iterative statements repeat a particular statement block until a condition has been satisfied.
    Questpond
    The 3 Musketeers: - Model, View and Controller using ASP.NET MVC – Part 2 
    Last updated on: 17 Nov 2008 01:38:41 AM by Questpond | Views: 14866 | Category: ASP.NET |
    This is my second article in MVC. In my previous article we had discussed how we can develop MVC application in ASP.NET using HttpHandler. In case you have missed the first part I have given the link below. I am sure Httphandler is a tough way to implement MVC, but if you have understood the concept then you have understood the basics of implementing MVC. Ok, now good news in VS 2008 we have a something readymade given by Microsoft ASP.NET community the ASP.NET MVC. In this section we will discuss step by step how we can use the ASP.NET MVC to build the three Musketeer’s Model, View and Controller. It’s a clean approach and easy to build upon as it encapsulates the HttpHandler implementation for MVC, thus bringing in simplicity.