Articles (2414) - Page 144

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.
 
Cp_raj
Best Practise in String Methods 
Last updated on: 07 Jul 2009 12:34:15 AM by Cp_raj | Views: 8233 | Category: C# |
String Method
SheoNarayan
Custom SEO friendly paging with ASP.NET Repeater or DataList control 
Last updated on: 04 Jul 2009 07:40:52 PM by SheoNarayan | Views: 95163 | Category: ASP.NET |
This article shows how to achieve Custom SEO Friendly paging for controls like Repeater or DataList those doesn't support paging out of box.
SheoNarayan
Using PageMethods and JSON in ASP.NET AJAX 
Last updated on: 04 Jul 2009 05:09:52 PM by SheoNarayan | Views: 134118 | Category: ASP.NET AJAX |
Votes: 2 | Rating: 5 out of 5
This article describes how to use ASP.NET AJAX PageMethods to submit data to the server and get response. It also shows how to serialize object into JSON format and access its properties in JavaScript.
Questpond
Optimizing LINQ Queries using DataLoadOptions 
Last updated on: 04 Jul 2009 03:03:58 AM by Questpond | Views: 11688 | Category: ASP.NET |
In this section we will understand the round trip issues of LINQ and how we can overcome the same using ‘DataLoadOptions’. One of the biggest issues with LINQ to SQL is that it fires SQL query for every object which has a huge impact on performance. In this article we will see how we can get all data in one SQL Query.
SheoNarayan
Ensuring button is clicked only once, Confirmation and Please wait message for ASP.NET Form 
Last updated on: 03 Jul 2009 03:51:06 PM by SheoNarayan | Views: 36750 | Category: ASP.NET |
This article explains how to ensure that submit button is clicked only once, get confirmation from user before submitting the form and display "Please wait" message when the ASP.NET web form is submitted to the server. The sample demo also works well when you have many asp.net validation control in your form.
Syedshakeer
How to get a Selected Row Data from a DataList ? 
Last updated on: 01 Jul 2009 06:41:49 AM by Syedshakeer | Views: 34064 | Category: ASP.NET |
In this Article you can learn how to get a Selected Row Data from a DataList and display the data in textBoxes.
Syedshakeer
How to get the Values of Selected Row from a Gridview using ASP.NET 
Last updated on: 01 Jul 2009 06:30:50 AM by Syedshakeer | Views: 276711 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
In this Article you can learn how to get the values of selected row from a Gridview and display the values in textBoxes using C# code.
  • Cp_raj
    Extension Method (.Net 3.5 and above) 
    Last updated on: 01 Jul 2009 05:00:38 AM by Cp_raj | Views: 32859 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    This article describes the use of Extension method in C#.
    Questpond
    One-Many and One-One relationship using LINQ to SQL 
    Last updated on: 01 Jul 2009 02:19:55 AM by Questpond | Views: 11957 | Category: ASP.NET |
    In this article we will start with a basic LINQ to SQL example and then see how we can implement one-many and one-one relationship using ‘Entityref’ and ‘EntitySet’. We have also attached a source which demonstrates the same in a practical manner.
    Hareshambaliya
    Extending Grid View Control of ASP .NET 
    Last updated on: 29 Jun 2009 12:10:08 AM by Hareshambaliya | Views: 15155 | Category: ASP.NET |
    If you want to modify some functionality of existing Grid View control of ASP .Net then you always have the option of extending the control. In this article I have extend the Grid View with custom field. To extend the Grid View control you can inherit the new class from existing class or any of the following class 1). DataControlField – The base class for bind field 2). ButtonFieldBase – The base class for all button field and command field. In this article I am extending the Grid View control of ASP .Net with LongTextField and ConfirmDeleteButton (it will be in my next blog)
    SheoNarayan
    Setting up Start Options in Visual Studio and Visual Web Developer 
    Last updated on: 28 Jun 2009 08:06:47 AM by SheoNarayan | Views: 15131 | Category: ASP.NET |
    While working with Visual Studio or Visual Web Developer, we usually come across setting start up options, this article focuses on each of the start up options and explains their uses.
    SheoNarayan
    Website vs Web Application - Embedded resources 
    Last updated on: 26 Jun 2009 09:36:04 AM by SheoNarayan | Views: 19304 | Category: ASP.NET |
    In this small article, I am going to show the use of Build Action and Copy to Output Directory property of a file inside the class library and how it behaves differently in Web Site and Web Application projects.
    Vuyiswamb
    How to Rebuilt all indexes in all Databases in SQL 2000/2005 
    Last updated on: 23 Jun 2009 11:11:49 PM by Vuyiswamb | Views: 10225 | Category: Sql Server |
    This Article will Show you , how to rebuild all the indexes in table in all the Databases in SQL 2005/200
    Questpond
    SilverLight FAQ's - Part 3 
    Last updated on: 23 Jun 2009 03:21:55 AM by Questpond | Views: 10251 | Category: Silverlight |
    This article discusses 12 FAQ’s which revolve around bindings, layouts, consuming WCF services and how to connect to database through silver light.
    Syedshakeer
    Simplest Method Export GridviewData to Excelsheet using ASP.Net 
    Last updated on: 23 Jun 2009 12:05:09 AM by Syedshakeer | Views: 11331 | Category: ASP.NET |
    In this Article you can Know how to Export a Gridview Data to Excel sheet using IO strems.