Hi all,
I have a web application in asp.net 2.0 and its survey application where use will give answer to the question on scale of 1 to 10.
We want to display scale like 1 2 3 4 5 6 7 8 9 10 .
When user will click on number then that number will be selected and also need to display it as selected and according to the selected number the value will be saved in the database. During post back the selected value should not change.
I am finding is there any free horizontal list box control for asp.net 2.0 ??
OR
Is there any other way to implement this
Please help.... me...
Thanks
Prasad
Loading
Suthish NairPosted Nov 2, 2010, 8:54 AM
if needed i can post the code..
Prasad GodbolePosted Nov 2, 2010, 5:53 AM
Yes. I tried with client side onclick event in which I am returning false to avoid postback.
But if i use this then I am not getting selected value
Sam HobbsPosted Oct 16, 2010, 6:39 PM
Suthish NairPosted Oct 16, 2010, 5:53 AM
Prasad GodbolePosted Oct 16, 2010, 2:17 AM
Thanks.... this is useful... but it postback on selction
Just got a link of horizontal list box of "Obout"
http://www.obout.com/listbox/
please have a look
We need like this but we will have to purchase it
Regards
Prasad
Suthish NairPosted Oct 7, 2010, 1:10 PM
protected void BulletedList1_Click(object sender, BulletedListEventArgs e)
{
Label1.Text = "SelectedIndex=" + e.Index.ToString() + ",Value=" + BulletedList1.Items[e.Index].Value;
}
Prasad GodbolePosted Oct 7, 2010, 9:33 AM
This is the limitation :(
Regards
Prasad
Suthish NairPosted Oct 7, 2010, 9:29 AM