Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Controls > Problems with ListBox Control

Reply
Thread Tools

Problems with ListBox Control

 
 
Nayak
Guest
Posts: n/a
 
      06-13-2005
On my web page, I want to let the user change the order of items in the
LISTBOX.
I could do that using the javascript , but when the page is submitted the
listbox is reset to its original values.
what happenig here ?

I am using ASP.Net with C# as the code behind




 
Reply With Quote
 
 
 
 
Brock Allen
Guest
Posts: n/a
 
      06-13-2005
The items in the DropDownList are stored in ViewState, so modifying the actual
DDL in the HTML DOM doesn't affect the ViewState, and thus when posted back
to the server isn't reflected in the server-side DDL. You'll need to build
some other scheme to submit that info to the server. Typically a hidden input
that you manipulate from the same javascript that reorders the DDL. Then
on the server you'll have to reorder the DDL based upon that hidden.

-Brock
DevelopMentor
http://staff.develop.com/ballen



> On my web page, I want to let the user change the order of items in
> the
> LISTBOX.
> I could do that using the javascript , but when the page is submitted
> the
> listbox is reset to its original values.
> what happenig here ?
> I am using ASP.Net with C# as the code behind
>




 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Listbox selection to populate another listbox? Chris Kettenbach ASP .Net 3 06-16-2005 09:19 PM
Listbox item added with client scripts not submitting with ASP:Listbox Simon Prince ASP .Net 2 10-19-2004 04:11 PM
How do I move all items in a listbox to another listbox kent ASP .Net 1 05-03-2004 12:17 AM
click listbox and refresh another listbox DC Gringo ASP .Net 0 04-06-2004 02:13 AM
Re: now desparate! - 1st listbox contents disappears when 2nd listbox appears? blenderdude ASP .Net 0 08-03-2003 10:18 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57