Friday, July 3, 2009

Ensuring button is clicked only once, Confirmation and Please wait message for ASP.NET Form

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.

Read more at http://www.dotnetfunda.com/articles/article453-ensuring-button-is-clicked-only-once-confirmation-and-please-wait-message-for-aspnet-form.aspx

Author: SheoNarayan

Thursday, July 2, 2009

Setting up Start Options in Visual Studio and Visual Web Developer

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.

Read more at http://www.dotnetfunda.com/articles/article438-setting-up-start-options-in-visual-studio-and-visual-web-developer.aspx

Author: SheoNarayan

TRIGGERS

In this Article you can learn how to create and use DML TRIGGERS .

Read more at http://www.dotnetfunda.com/articles/article441-triggers.aspx

Author: Syedshakeer

How to get a Selected Row Data from a DataList ?

In this Article you can learn how to get a Selected Row Data from a DataList and display the data in textBoxes.

Read more at http://www.dotnetfunda.com/articles/article449-how-to-get-a-selected-row-data-from-a-datalist-.aspx

Author: Syedshakeer

How to get the Values of Selected Row from a Gridview using ASP.NET

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.

Read more at http://www.dotnetfunda.com/articles/article442-how-to-get-the-values-of-selected-row-from-a-gridview-using-aspnet.aspx

Author: Syedshakeer

Extending Grid View Control of 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)

Read more at http://www.dotnetfunda.com/articles/article439-extending-grid-view-control-of-asp-net.aspx

Author: Hareshambaliya

Extension Method (.Net 3.5 and above)

This article describes the use of Extension method in C#.

Read more at http://www.dotnetfunda.com/articles/article445-extension-method-net-35-and-above.aspx

Author: Cp_raj

One-Many and One-One relationship using LINQ to SQL

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.

Read more at http://www.dotnetfunda.com/articles/article446-onemany-and-oneone-relationship-using-linq-to-sql.aspx

Author: Questpond