Monday, 28 December 2015

Entity Framework Development Approaches

0
This article is taken from msdn.microsoft.com, it was a necessary part so i provided the content here also. The Entity Framework is the easiest ORM framework to learn for an ASP.NET developer. Because Microsoft continues to focus ORM development...
Read More »

Tuesday, 15 December 2015

How to make textbox, dropdownlist combination control using ajax combobox in asp.net

0
Step 1 : Add the AjaxControlToolkit Reference to your asp.net website and register its assembly on the required page. <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> Step 2: Add the ToolkitScriptManager above any ajax tool,...
Read More »

Thursday, 10 December 2015

Using ValidatorCalloutExtender to Enhance RequiredFieldValidator to validate.

0
Step 1 : First you require Ajaxtoolkit to be added to your  asp.net toolbox. Step 2:  Add the RequiredFieldValidator control from toolbox for textbox control to validate. Step 3:  Add the ToolkitScriptManager control...
Read More »

Wednesday, 9 December 2015

How to pass repeater/any control from one page to another in asp.net?

0
Step 1:  Make two pages, one where the control (repeater) is present and another where you need to transfer it, namely source.aspx and destination.aspx. Step 2: At source.aspx page write down your control (repeater) and bind it, in my case i am passing the repeater, so that i could...
Read More »

Tuesday, 8 December 2015

How to open new popup form on gridview button click ?

0
Step 1: We will use ajaxtoolkit to open a new form on gridview button click or on normal button click. You have to add reference to AjaxToolKit.dll, which you can found in the package of ajaxtoolkit from ajaxcontroltoolkit.codeplex.com. Step 2: You can also add Ajax tools into the...
Read More »