How to set up a multi step registration? Programming Web Development by geneboss ….Web.Security; using System.Net.Mail; using AspNet.StarterKits.Classifieds.BusinessLogicLayer; using AspNet.StarterKits.Classifieds.Web; public partial class ConfirmCode : System… C# update then delete record in datagridview Programming Software Development by Yuki_1 …, KeyPressEventArgs e) { if (e.KeyChar == (char)13) { TMPB_attn row_TMPN_attn = BusinessLogicLayer.TMS_GET_PROXIMITY_VALID_TO_USE(txt_proximity.Text); if (!String.IsNullOrEmpty(txt_proximity.Text)) { using (TMPB_attn_DAL… Sorting at datagridview c# Programming Software Development by Yuki_1 …KeyPressEventArgs e) { if (e.KeyChar == (char)13) { TMPB_attn row_TMPN_attn = BusinessLogicLayer.TMS_GET_PROXIMITY_VALID_TO_USE(txt_proximity.Text); if (row_TMPN_attn == null) { if (!String.IsNullOrEmpty(txt_proximity.… Re: Business logic layer Programming Software Development by DdoubleD … authorId) { // dao/db code here to delete the record } } class BusinessLogicLayer { DataTable authorTable = null; public void LoadAuthorTable() { // Load records from DAL… Re: How to set up a multi step registration? Programming Web Development by geneboss Problem solved. Re: How to set up a multi step registration? Programming Web Development by leeward [QUOTE=geneboss;981287]Problem solved.[/QUOTE] Hi, I have the same problem, what did you have to do ?. Kered Re: Sorting at datagridview c# Programming Software Development by djjeavons Hi I did a basic test with a DataTable as the data source for the Grid and your sort code works fine: int gridCounter; DataTable gridData; private void button1_Click(object sender, EventArgs e) { if (gridData == null) { gridData = new DataTable(); gridData.Columns.Add("attn_id", typeof(int… Re: Sorting at datagridview c# Programming Software Development by Yuki_1 Hi,I not really get your meaning of "what type of data is the DataGridView bound".But i can said that my datagridview will show out the record that save in database by using TMPB_attn.TMPB_attn is use to connect the database. And datagridview does not have any button for sorting.I just want it sort by itself maybe...But i still don't know… Re: Sorting at datagridview c# Programming Software Development by djjeavons > I not really get your meaning of "what type of data is the DataGridView bound" What I mean is, what does this return `dalObj.GetRecords().Cast<TMPB_attn>().ToList()`? Also, can this list be sorted prior to binding to the DataGridView