ASP.NET Articles (487) - Page 28

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.

487 records found.
 
Questpond
Model View Presenter 
Last updated on: 25 Nov 2008 02:10:54 AM by Questpond | Views: 13871 | 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.
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: 6721 | 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.
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: 14637 | 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.
Patidar.shekhar
Sending Page contents through mail in ASP.NET 
Last updated on: 15 Nov 2008 02:11:24 PM by Patidar.shekhar | Views: 5451 | Category: ASP.NET |
Sends selected content through Email.
Questpond
The 3 Musketeers: - Model, View and Controller using HTTP Handler – Part 1 
Last updated on: 15 Nov 2008 12:10:39 AM by Questpond | Views: 16592 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
In this section we will learn about the basics of MVC and then see how we can implement the same in ASP.NET using HttpHandlers.
Questpond
The two interceptors: - HttpModule and HttpHandlers 
Last updated on: 13 Nov 2008 04:11:46 AM by Questpond | Views: 11673 | Category: ASP.NET |
Many times we want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request etc. ASP.NET has provided two types of interception HttpModule and HttpHandler. This article walks through it.
Hareshambaliya
Easy way to install Dotnetnuke 
Last updated on: 11 Nov 2008 07:23:40 AM by Hareshambaliya | Views: 11617 | Category: ASP.NET |
This article describes how to install DotNetNuke 4.9 easy way. It describes all the required steps to install DotNetNuke in step by step. This article shows all the setting that is required with snaps.
  • Questpond
    Estimation and Quotation using Use case Points 
    Last updated on: 10 Nov 2008 05:47:06 PM by Questpond | Views: 12483 | Category: ASP.NET |
    In this article we will see how we can do estimation using use case points
    SheoNarayan
    How to insert record using GridView 
    Last updated on: 09 Nov 2008 08:39:39 AM by SheoNarayan | Views: 507680 | Category: ASP.NET |
    Votes: 4 | Rating: 5 out of 5
    Generally GridView is used to show data in tabular format. It also provide ways to modify and delete records but currently there is no way to insert record using GridView. In this article, I shall describe an easy work around to insert record using GridView.
    Trilochan.nayak
    How to get the CheckBoxlist Value using Javascript? 
    Last updated on: 08 Nov 2008 05:20:30 AM by Trilochan.nayak | Views: 12175 | Category: ASP.NET |
    To get the CheckBoxlist Value using Javascript, we have to update the checkboxlist into a new control say name:"CheckBoxListExCtrl " which can inherit checkboxlist property.
    Questpond
    C# Code reviews using StyleCop – Detailed Article 
    Last updated on: 07 Nov 2008 01:43:51 AM by Questpond | Views: 13051 | Category: ASP.NET |
    In this article we will discuss an upcoming code review tool StyleCop. We will understand the basics and do a small sample of code review practically to understand how StyleCop works. I have been writing and recording videos on architecture, design patterns, UML, enterprise blocks, estimation, and code reviews. You can view all my videos on http://www.questpond.com . Any feedbacks do email me at shiv_koirala at yahoo.com You can read my previous article on code reviews using FXCOP http://www.dotnetfunda.com/articles/article175.aspx
    Questpond
    7 Steps to write your own custom rule using FXCOP 
    Last updated on: 03 Nov 2008 06:18:31 AM by Questpond | Views: 18772 | Category: ASP.NET |
    Code review is one of the important activities in any project. Manual code reviews are definitely good and I will say better than automation. But when the project is large manual code reviews have their own limitations. FXCOP is one of the legendary tools which help us automate code reviews. This article will discuss some basics of FXCOP and then concentrate mainly on how we can add custom rules in FXCOP.
    Questpond
    Automating Compilation for VS Web Developer 2008 Express edition 
    Last updated on: 03 Nov 2008 01:25:41 AM by Questpond | Views: 5668 | Category: ASP.NET |
    Express edition are downsized free IDE provided by Microsoft, so that developers and experiment to feel how the enterprise edition will look like. One of the products provided in the express edition suite is the web developer 2008 express edition. VS web developer edition helps us to make web application in .NET. One of the big drawbacks of VS web developer express edition is that it helps to debug but does not compile the ASPX pages. In other words no DLL is generated for the ASPX pages. This tutorial will discuss how we can use the aspnet_compiler.exe to generate DLL for web projects developed in VS 2008 web developer express edition.
    Questpond
    Financial Calculation using .NET:- Depreciation (Part-2) 
    Last updated on: 31 Oct 2008 03:26:15 AM by Questpond | Views: 10686 | Category: ASP.NET |
    In this article we will look how we can use “Microsoft.VisualBasic” namespace to do single line and double line depreciation calculation.
    Questpond
    UI Object Connector – Implementation of Mediator Pattern 
    Last updated on: 30 Oct 2008 08:05:06 AM by Questpond | Views: 4884 | Category: ASP.NET |
    When we consume business objects in UI the logic can become pretty complex. Activities like setting the business object value, getting the object value and setting the user interface from the object value. We can minimize the complexity of UI interaction with business object using mediator pattern.