ASP.NET Articles (487) - Page 22

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.
 
Virendradugar
No need to type runat=”server” now 
Last updated on: 03 Sep 2009 04:15:11 AM by Virendradugar | Views: 7998 | Category: ASP.NET |
Votes: 1 | Rating: 4 out of 5
This is related to ASP.NET 4.0, where now there is no need to type runat attribute.
Virendradugar
ViewState and Readonly Property of Textbox 
Last updated on: 01 Sep 2009 11:00:53 PM by Virendradugar | Views: 10351 | Category: ASP.NET |
This article helps in understanding how the readonly property behaves when viewstate is enabled or disabled for textbox.
Questpond
.NET Best Practice No: 3:- Using performance counters to gather performance data 
Last updated on: 01 Sep 2009 07:53:18 AM by Questpond | Views: 28364 | Category: ASP.NET |
This article discusses how we can use performance counter to gather data from an application. So we will first understand the fundamentals and then we will see a simple example from which we will collect some performance data.
Goldytech
How to enable asp.net application to use application services 
Last updated on: 30 Aug 2009 12:10:32 AM by Goldytech | Views: 5270 | Category: ASP.NET |
A tutorial video which explains step by step to enable your asp.net application to consume application services like Membership,Roles,Profiles etc.
Questpond
.NET Best Practice No: 2:- Improve garbage collector performance using finalize/dispose pattern 
Last updated on: 24 Aug 2009 05:56:58 AM by Questpond | Views: 50333 | Category: ASP.NET |
Ask any developer which is the best place in a .NET class to clean unmanaged resources?, 70% of them will say the destructor. Although it looks the most promising place for cleanup it has a huge impact on performance and memory consumption. Writing clean up code in the destructor leads to double GC visits and thus affecting the performance multifold times. In order to validate the same we will first start with bit of theory and then we will actually see how GC algorithm performance is impacted using destructor. So we will first understand the concept of generations and then we will see the finalize dispose pattern.
Lakhangarg
Change Icon in the Address Bar 
Last updated on: 21 Aug 2009 12:32:26 AM by Lakhangarg | Views: 13524 | Category: ASP.NET |
This is Basically use to change the address bar icon of your website.
SheoNarayan
Working with CustomValidator control in ASP.NET 
Last updated on: 08 Oct 2009 12:30:00 AM by SheoNarayan | Views: 143630 | Category: ASP.NET |
This article shows how to use CustomValidator validation control that is available in ASP.NET out of the box.
  • Lakhangarg
    HTTP Request Message Format 
    Last updated on: 18 Aug 2009 02:57:09 AM by Lakhangarg | Views: 133396 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    This Article will describe the input / output (Request / Response) message formats.
    Syedshakeer
    Paging for First, Next, Previous and Last in gridview 
    Last updated on: 16 Aug 2009 06:48:22 PM by Syedshakeer | Views: 72417 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    From this Article you can know how make Paging for First, Next, Previous and Last in GridView.
    Questpond
    .NET Best Practice No: 1:- Detecting High Memory consuming functions in .NET code 
    Last updated on: 15 Aug 2009 12:06:09 PM by Questpond | Views: 34380 | Category: ASP.NET |
    One of the important factors for performance degradation in .NET code is memory consumption. Many developers just concentrate on execution time to determine performance bottle necks in a .NET application. Only measuring execution time does not clearly give idea of where the performance issue resides. Ok, said and done one of the biggest task is to understand which function, assembly or class has consumed how much memory. In this tutorial we will see how we can find which functions consume how much memory. This article discusses the best practices involved using CLR profiler for studying memory allocation.
    Virendradugar
    Access ViewState Across Pages 
    Last updated on: 11 Aug 2009 10:20:35 PM by Virendradugar | Views: 12474 | Category: ASP.NET |
    Votes: 2 | Rating: 5 out of 5
    This article demonstrates how we can share ViewState across pages.
    Utsav
    Multiple Delete From a gridview in one click. 
    Last updated on: 10 Aug 2009 10:14:21 PM by Utsav | Views: 9541 | Category: ASP.NET |
    After Selecting the row or checking the multiple row in a Gridview you can delete the data in just one click.
    SheoNarayan
    Backup and Restore database in ASP.NET 
    Last updated on: 21 Mar 2011 08:51:35 PM by SheoNarayan | Views: 86496 | Category: ASP.NET |
    Votes: 2 | Rating: 5 out of 5
    This article describes an approach to take backup and restore any database that is supported by .NET. In this article, I have taken SQL Server as an example however similar approach can be followed to backup and restore MySql, Oracle and any other databases.
    Anup1252000
    Ajax style File Upload 
    Last updated on: 03 Aug 2009 07:16:29 AM by Anup1252000 | Views: 30224 | Category: ASP.NET |
    In this article we are going to see the fileupload without postback.. We are going to do this by using ICallbackEventHandler..
    Questpond
    LINQ FAQ Part 3 
    Last updated on: 27 Jul 2009 11:23:30 PM by Questpond | Views: 6878 | Category: ASP.NET |
    This is the third series in my LINQ FAQ series. In this series we will cover LINQ FAQ’s related to concurrency handling, compiled queries, CRUD implementation and mapping simple .NET classes with XML file configuration. I love to write articles in FAQ format for the only purpose that they are to the point and you can get to know more by reading less.