ASP.NET Articles (487) - Page 29

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
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: 8259 | 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.
Manisky2000
Binding Dynamic Column in GridView 
Last updated on: 21 Oct 2008 02:45:11 AM by Manisky2000 | Views: 22800 | Category: ASP.NET |
Adding dynamic field in to the gridview.
Questpond
Exception handling using Enterprise application block 
Last updated on: 21 Oct 2008 08:39:13 AM by Questpond | Views: 18491 | 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.
Questpond
Plug & play architecture using policy application blocks 
Last updated on: 20 Oct 2008 01:30:35 AM by Questpond | Views: 5836 | 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
Manisky2000
Difference Between Server.Transfer vs Response.Redirect 
Last updated on: 20 Oct 2008 09:23:39 AM by Manisky2000 | Views: 36231 | 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
Client side validation using Validation Application blocks 
Last updated on: 14 Oct 2008 08:33:27 PM by Questpond | Views: 9886 | 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
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: 7932 | 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.
  • Questpond
    Inversion of control and Dependency injection 
    Last updated on: 06 Oct 2008 11:07:32 PM by Questpond | Views: 17864 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    When we see around, architectures mainly discuss about loose coupling , scalability , performance etc etc. Many architecture forget one of the important aspects in software is making application globalized. Depending on project some application would not really want to have multi-language based websites , but i am sure many will. So in this article we will go through a series of FAQ which will give you a quick start on making application multi-language based.
    SheoNarayan
    Getting selected record key value from ASP.NET Data Controls 
    Last updated on: 12 Oct 2008 08:17:52 AM by SheoNarayan | Views: 95191 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    This article shows how to get Selected record key value from GridView, DataList, FormView, DetailsView, ListView, and Repeater controls.
    Questpond
    16 steps to write flexible business validation in C# using validation blocks 
    Last updated on: 30 Sep 2008 10:46:38 AM by Questpond | Views: 28555 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    Validation is one of the most important parts in any software project. Building flexible business validation is every one’s dream. Rather than writing frameworks from scratch to do these things, Microsoft validation blocks makes it a breeze. In this article we will discuss how validation application blocks help us to build flexible validations using validation application blocks. Its just a simple sixteen step process to put our business validation in action using validation blocks.
    Raja
    Forms Authentication in ASP.NET with C#: Advance 
    Last updated on: 14 Oct 2013 07:11:58 AM by Raja | Views: 382541 | Category: ASP.NET |
    Votes: 6 | Rating: 4.67 out of 5
    This article describe how to create Roles based sccurity using Forms Authentication in easy to follow steps.
    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: 24037 | Category: ASP.NET |
    I am going to expalin how to perform the editing options through sigle click or double click on Gridview or DataGrid.
    Majith
    Applying Themes and Skins using ASP.NET ,C# 
    Last updated on: 10 Sep 2008 11:50:53 PM by Majith | Views: 18788 | Category: ASP.NET |
    In this article I am going to expalin about Themes and Skin files and how to use it on ASP.NET Files.
    SheoNarayan
    SEO friendly pagination using asp:DataPager control 
    Last updated on: 18 Aug 2008 10:58:14 AM by SheoNarayan | Views: 78736 | Category: ASP.NET |
    This article shows how to paginate (SEO friendly) a ListView using DataPager control without enabling ViewState.
    SheoNarayan
    Binding, Adding, Editing, Updating, Deleting, Paging and Sorting records in ListView Control 
    Last updated on: 25 Sep 2008 03:24:05 AM by SheoNarayan | Views: 182565 | Category: ASP.NET |
    Votes: 4 | Rating: 5 out of 5
    ListView control is one of the most popular and powerful web server control in ASP.NET 3.5. In this article, we will explore most frequently asked questions about ListView control.