Articles (2414) - Page 155

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
Automating Compilation for VS Web Developer 2008 Express edition 
Last updated on: 03 Nov 2008 01:25:41 AM by Questpond | Views: 5709 | 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: 10746 | 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: 4947 | 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.
Majith
Dynamic Single click , Double Click for Editing the rows in Gridview 
Last updated on: 23 Oct 2008 11:22:56 PM by Majith | Views: 24150 | Category: ASP.NET |
I am going to expalin how to perform the editing options through sigle click or double click on Gridview or DataGrid.
Questpond
Financial calculation using .NET Part 1:- How much will I get after X years? 
Last updated on: 23 Oct 2008 03:08:41 AM by Questpond | Views: 8450 | Category: ASP.NET |
In finance world many times we need to calculate general financial calculation like interest calculation, regression analysis, internal rate of return etc. .NET does not provide readymade functions for these regular financial functionalities. Building these functionalities from scratch is not a big thing but testing it end to end with different scenarios is a challenge. We will try to understand how we can reuse 'Financial' classes from Microsoft.VisualBasic namespace. These functions are time tested and you do not need to code from scratch. In this part we will understand how we can calculate the future value for a given rate of interest, period and monthly invested amount. I have uploaded a sample source code which has a simple UI to calculate the future value.
Questpond
On Error Resume Next in C# 
Last updated on: 21 Oct 2008 08:41:55 AM by Questpond | Views: 47302 | Category: C# |
This is a very simple article and some people may really find it not worth to be termed as article. One of my junior was working for a full day on this. Just wanted to ensure that other people do not face the same problem. In this article we will try to understand how we can simulate the On Error Resume Next feature of VB.NET in C#. We all understand that it’s a bad thing to handle errors, but sometimes some process should continue irrespective there is error or not.
Questpond
Exception handling using Enterprise application block 
Last updated on: 21 Oct 2008 08:39:13 AM by Questpond | Views: 18681 | Category: ASP.NET |
Exception handling is one of the most important tasks in any application. Many applications either do not handle applications or they handle it in an adhoc manner. In this section we will see how we can use the readymade exception handling block so that we do not need to code and build error handling routines from scratch.
  • Manisky2000
    Binding Dynamic Column in GridView 
    Last updated on: 21 Oct 2008 02:45:11 AM by Manisky2000 | Views: 22855 | Category: ASP.NET |
    Adding dynamic field in to the gridview.
    Manisky2000
    Difference Between Server.Transfer vs Response.Redirect 
    Last updated on: 20 Oct 2008 09:23:39 AM by Manisky2000 | Views: 36294 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    By the Following code sample attachement, This concept will be more understandable. Make use of it.
    Questpond
    Plug & play architecture using policy application blocks 
    Last updated on: 20 Oct 2008 01:30:35 AM by Questpond | Views: 5899 | Category: ASP.NET |
    In this section we will discuss how we can make plug & play architecture using policy application blocks. What we will do is we will take a practical scenario where we want to enable logging for an application depending on situations
    Questpond
    Project Life Cycle beyond SDLC 
    Last updated on: 19 Oct 2008 12:06:42 AM by Questpond | Views: 13616 | Category: Management |
    Many people think project life cycle circulates around SDLC. In this article we will discuss about other phases which occur before SDLC starts. I know that companies have tailor made phases we have just tried to put phases followed by majority IT companies. We have visualized two companies Shreya ltd who is the customer and Hanu software who is the vendor.
    Questpond
    Client side validation using Validation Application blocks 
    Last updated on: 14 Oct 2008 08:33:27 PM by Questpond | Views: 9953 | Category: ASP.NET |
    Enterprise validation application provides us a ready made framework by which we can implement dynamic validation easily in our project. In case you are not aware of the basics you can watch my 20 minutes exclusive video on the same at http://www.questpondvd.com/EnterpriseApplicationBlock/EnterpriseApplicationBlock.html By using enterprise validation blocks you can create validation in a dynamic fashion and the validations can be invoked depending on the user logged in. Now let’s understand one of the biggest drawbacks of the validation blocks and let’s see how we can address the same.
    Questpond
    UML Interview Questions - Part 2 
    Last updated on: 14 Oct 2008 11:27:02 AM by Questpond | Views: 24374 | Category: Design Pattern & Practices |
    This section will cover Collaboration diagrams, Activity diagrams, Chart Diagrams, Package diagrams, Component diagrams, Deployment diagrams.
    Questpond
    UML Interview Questions - Part 1 
    Last updated on: 14 Oct 2008 11:25:16 AM by Questpond | Views: 103012 | Category: Design Pattern & Practices |
    This Section will cover use case diagrams, primary and secondary actors, primary and secondary actors, Extend’ and ‘Include, class diagrams, protected in class diagrams, class diagram mean, composition in class diagrams, association in class diagrams, service class, entity and service class, generalization and specialization, abstract class and interface , object diagrams , sequence diagrams.
    Questpond
    C# validation according to logged in user using Microsoft enterprise validation blocks 
    Last updated on: 14 Oct 2008 11:04:33 AM by Questpond | Views: 7998 | Category: ASP.NET |
    Many times we want certain set of validation to fire for some user and certain set of validation to figure for some other user. In the section we will see how we can achieve the same using Microsoft enterprise validation blocks.