I have two listbox in a page in my website. one listbox contain report
owner name the other one contain the report name.. both the listbox
are databound.
what i wanted is that when i scroll one listbox the listbox should
also be scrolled and vice versa . please give a workaround.
thanks in advance,
Arnab
It's a pretty complex task. You need to have a very good understanding of
client-side events and programming. I doubt the effect is worth of effort.

Signature
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
>I have two listbox in a page in my website. one listbox contain report
> owner name the other one contain the report name.. both the listbox
[quoted text clipped - 4 lines]
> thanks in advance,
> Arnab
arnabit@gmail.com - 11 Sep 2007 05:38 GMT
On Sep 10, 5:58 pm, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@mMvVpPsS.org> wrote:
> It's a pretty complex task. You need to have a very good understanding of
> client-side events and programming. I doubt the effect is worth of effort.
[quoted text clipped - 18 lines]
>
> - Show quoted text -
yaa i know it is a complex task,but i have to do this.can you tell me
a workaround ,its urgent..
Alexey Smirnov - 11 Sep 2007 11:27 GMT
On Sep 10, 2:58 pm, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@mMvVpPsS.org> wrote:
> It's a pretty complex task. You need to have a very good understanding of
> client-side events and programming. I doubt the effect is worth of effort.
[quoted text clipped - 18 lines]
>
> - Show quoted text -
http://groups.google.com/group/microsoft.public.dotnet.framework.aspnet/browse_t
hread/thread/8651d6c99933a338
On Sep 10, 4:24 am, "arna...@gmail.com" <arna...@gmail.com> wrote:
> I have two listbox in a page in my website. one listbox contain report
> owner name the other one contain the report name.. both the listbox
[quoted text clipped - 4 lines]
> thanks in advance,
> Arnab
Why not concatinate the strings together prior to loading the listbox
and using just one listbox?
something like this:
while(datareader.Read())
{
string name = datareader["reportOwnerColumn"]. ToString() + ": " +
datareader["reportNameColumn"]. ToString();
ListBox.Items.Add(new ListItem(name, SomeKeyValue.ToString()));
name=String.Empty();
}
Alexey Smirnov - 11 Sep 2007 22:06 GMT
> On Sep 10, 4:24 am, "arna...@gmail.com" <arna...@gmail.com> wrote:
>
[quoted text clipped - 21 lines]
>
> - Show quoted text -
a DataView control could be an option too