Check for existing record using stored procedure in ASP.NET
Check for existing record in SQL Server database using stored procedure In this example I will explain, how to check for record exist before insert data into a table in…
Cascading Select list in ASP.NET AJAX
In this example I will show how to create a cascading select list in ASP.NET using data from SQL server database. The whole idea of cascading select list is to…
Insert multiple records into a table from a TextBox
Sometimes you may require to insert multiple records from one text field (textarea). This can be done for multiple user choices or voting controls etc. In this example I will…
Formatting fields in repeater in asp.net
Sometimes you may want to format data type in repeater. Here are some examples of formatting data in repeater- <asp:Repeater ID="Repeater2" runat="server" DataSourceID="dsData"> <HeaderTemplate> <table cellpadding="2" cellspacing="2" style="border: 1px solid…