I'm trying to catch up with .net and now I'm about to design a UI where in there I need to have 2 list-boxes and two buttons in between (as you have seen in regular apps). Buttons are "Add" and "Remove".
Let's say a reseller wants to fill out a form and tell us about which states he is dealing with (to deal with taxing) so when he chooses a state on left list-box he can click "Add" button and add that state to the list box on right and etc ... or remove them.
How can I do such a thing in C# & ASP.NET?
Regards,
akohan
ASP.NETC#
Last Comment
akohan
8/22/2022 - Mon
Carl Tawn
Something like that you might want to consider wrapping in a UserControl.
But basically you just need two ListBox controls and a couple of Buttons. Then, in the Click event handler for the Add button you can do something like:
First you'll need code to populate the "From" listbox with all the states, or just type them in manually as listitems like this in the aspx page:
<asp:listbox id="lstFrom" runat="Server">
<asp:listitem value="AL" text="Alabama" />
<asp:listitem value="AK" text="Alaska" />
et cetera, et cetera
</asp:listbox>
In your code-behind page, you'll need to handle two events, the cmdAdd_Click and the cmdRemove_Click, with code something like this:
Protected sub cmdAdd_Click (sender as object, e as eventargs)
lstSelected.items.add(lstUnSelected.SelectedItem)
lstUnSelected.Items.remove(lstUnSelected.SelectedItem)
End Sub
Protected sub cmdRemove_Click(sender as object, e as eventargs)
lstUnSelected.Items.add(lstSelected.SelectedItem)
lstSelected.Items.Remove(lstSelected.SelectedItem)
End Sub
akohan
ASKER
how about when I user clicks on Add or Remove button? how can I avoid submitting the form?
If you want to avoid postbacks you'll need to handle moving items from one list to another with Javascript instead -- no ASP.Net code required. Is there a reason why you don't want it to post back?
akohan
ASKER
no reason it is just I'm not familiar with post back yet! I thought I must avoid that.
so can I ignore that?
Carl Tawn
Alternatively you you can use AJAX to perform a partial postback. Doing a full postback shouldn't really matter, because it is events you react to rather than simply the fact that the page has posted back.
Yes, to handle the OnClick event of the buttons you'll need to postback the form, which will submit the form data and refresh the page. ASP.Net handles re-populating controls on the page with their old values automagically.
For example, if you also had a couple textboxes on that page, clicking the button to postback won't clear those out, when the page refreshes the values that were there before the click will persist.
akohan
ASKER
OK, the problem is that I'm not familiar with AJAX. do I need to know AJAX to send a piece of information from a listbox A to listbox B?
if yes, then does anybody know a link where I can learn enough to make this work?
I have seen huge book on Ajax but I don't have that time.
Thank you!
Carl Tawn
You don't need to know AJAX specifically. As long as you have the AJAX toolkit referenced from your project then you only really need to drop your controls into an AJAX UpdatePanel; the IDE code generator will plumb in all the background stuff for you.
Erm, my initial comment answered the original question. The rest of the stuff was outside of the original remit.
akohan
ASKER
Sorry, I have been out of town and busy with unexpected things ... may I choose an answer?
I apologize all for being late. Currently (happens sometimes) I don't see any button on page to choose one or more answers.
But basically you just need two ListBox controls and a couple of Buttons. Then, in the Click event handler for the Add button you can do something like:
protected void AddButton_Click(object sender, EventArgs e)
{
if (ListBox1.SelectIndex != -1)
ListBox2.Items.Add(ListBox
}
then do the reverse for the Remove button.