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…
Spliting data in oracle table
Recently I was working on re-modelling and re-designing an oracle database. As part of the re-modelling I was required to import data from old tables to new tables. One of…
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…