Articles (2414) - Page 97

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.
 
Sheonarayan
How to Trace an ASP.NET Application? 
Last updated on: 29 Jun 2011 06:12:44 AM by Sheonarayan | Views: 16548 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
In earlier article we learnt that how to enable debugging in ASP.NET application. In this article we shall learn how to trace the asp.net application or website to know that how the page execution is happening and which method is taking how much time.
debal_saha-9451
Foreign Key relation like Database in Silverlight using ComboBox 
Last updated on: 29 Jun 2011 05:48:58 AM by debal_saha-9451 | Views: 11816 | Category: Silverlight |
Sometimes we need to make our users for their convenient not to remember the relationship between Id number with related to its designations. For E.g. in a company there is “Projectmanager”, “developer”, “Sales” etc … persons & they have their individual primary Id with those Ids are also may be related with their designations(or Employee Type.)
Naimishforu
Using Attributes in C# 
Last updated on: 28 Jun 2011 11:08:31 PM by Naimishforu | Views: 10457 | Category: C# |
Votes: 1 | Rating: 5 out of 5
In this article I shall demonstrate how to use attributes in C#
Vforvijay
Creating ASP.Net Menu Control using CSS 
Last updated on: 28 Jun 2011 03:47:54 AM by Vforvijay | Views: 138599 | Category: ASP.NET |
Creating ASP.Net Menu Control using CSS
Sheonarayan
How to enable debugging in an ASP.NET Application? 
Last updated on: 27 Jun 2011 02:33:50 AM by Sheonarayan | Views: 19117 | Category: ASP.NET |
Bug is unavoidable in application at the time of development. Debugging helps us to find out bugs and error in the program. In this article, we shall learn how to enable debugging in an ASP.NET application.
Naimishforu
Handling Exceptions in C# Programs 
Last updated on: 27 Jun 2011 02:13:39 AM by Naimishforu | Views: 11412 | Category: C# |
Votes: 1 | Rating: 5 out of 5
In this article I shall demonstrate the exception-handling capabilities of C#.
Vishvvas
Invoking of delegates in .NET (Part I) 
Last updated on: 25 Jun 2011 09:00:21 AM by Vishvvas | Views: 11582 | Category: .NET Framework |
Votes: 1 | Rating: 5 out of 5
To see how these invocation works and infer when to use to what (i.e. Invoke and BeginInvoke)
  • Sheonarayan
    How to find out if user’s browser accepts cookies? 
    Last updated on: 25 Jun 2011 07:19:05 AM by Sheonarayan | Views: 10922 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    In earlier articles, we learnt how to create, read, expire cookies and limit the scope of the cookies to a particular folder of the website and domain . In this article we are going to learn how to find out if user’s browser accepts the cookie or not.
    SheoNarayan
    ASP.NET GridView + jQuery tips and tricks - Part 1 
    Last updated on: 24 Jun 2011 04:49:40 AM by SheoNarayan | Views: 233944 | Category: ASP.NET |
    Votes: 5 | Rating: 4.8 out of 5
    This article demonstrate how to do CRUD operation using GridView and jQuery seamlessly (without page refresh) and also describes some simple UI effects in ASP.NET GridView control using jQuery. This is the Part 1 of this article.
    SheoNarayan
    How to get value from TextBox, RadioButtonList, DropDownList, CheckBox through JavaScript 
    Last updated on: 24 Jun 2011 04:31:10 AM by SheoNarayan | Views: 507184 | Category: JavaScript |
    Votes: 7 | Rating: 4 out of 5
    In this article I am going to show how to get value from asp.net controls like TextBox, RadioButtonList, DropDownList, CheckBoxes through JavaScript.
    SheoNarayan
    Calling methods of different classes into same Transaction Scope using System.Transactions 
    Last updated on: 24 Jun 2011 04:28:43 AM by SheoNarayan | Views: 25982 | Category: ASP.NET |
    Votes: 1 | Rating: 4 out of 5
    We must have came across a situation where we have to call methods of different classes under same transaction scope and rollback the operations if any error occurs during execution of any methods. For eg. If we have Debit and Credit class and DebitAmount method of Debit class executed successfully but an error occurred while calling CreditAmount method of Credit class, we should be able to rollback all operations done by DebitAmount method. In scenario like this we can use System.Transactions.TransactionScope to rollback all operations done by DebitAmount method.
    SheoNarayan
    4-Tier Architecture in ASP.NET with C# 
    Last updated on: 24 Jun 2011 04:23:04 AM by SheoNarayan | Views: 425300 | Category: ASP.NET |
    Votes: 11 | Rating: 4.18 out of 5
    [B][I]Code Updated on 21st April 2008 to support Sorting, Paging and data manipulation through Stored Procedure in DAL[/I][/B] Almost all of us must have heard about 3-Tier architecture but what is this 4-Tier architecture? What are the benefits and how it is different from other architectures?
    SheoNarayan
    Updating, Deleting records using GridView control 
    Last updated on: 24 Jun 2011 04:18:55 AM by SheoNarayan | Views: 598596 | Category: ASP.NET |
    Votes: 10 | Rating: 4.4 out of 5
    In this article, I am going to explain how to manipulate data using GridView control. This article scope is limited to Updating and Deleting records using GridView and I am not using any readymade Data controls for that but manually writing all event methods. I will be using Sql objects directly into methods to keep the example simple and straight forward. In practical scenario you should use your existing architecture to populate and update the data.
    Sheonarayan
    How to limit cookie for a particular domain in ASP.NET? 
    Last updated on: 23 Jun 2011 03:45:47 AM by Sheonarayan | Views: 16746 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    In earlier articles, we learnt how to create, read, expire cookies and limit the scope of the cookies to a particular folder of the website . In this article we are going to learn how to limit cookie for a particular domain.
    SheoNarayan
    How to save and retrieve regional languages data from the database? 
    Last updated on: 22 Jun 2011 04:22:12 AM by SheoNarayan | Views: 34315 | Category: ASP.NET |
    Votes: 1 | Rating: 5 out of 5
    In this article we are going to learn how to save and retrieve regional languages data from the database. We can use any language data in this example whether Hindi, Bangali, Urdu, French or Chinese.