Ask a Question related to ASP.NET General, Design and Development.
-
Sean #1
Radiobuttons and textbox with autopost
hi,
i have a radiobuttonlist which i have set the autopostback feature to false, so it would be easier to navigate thru' it, using the keyboard.
below the radiobuttonslist, i have a textbox which then has a method which fires , and i would need the value of the selected radiobutton.
since it does a postback, the value of the selected button goes to the default and i can't seem to pick up that value ..
any suggestions ??
Thank You for your feedback and inputs
--
Thank You,
Sean
Sean Guest
-
Grouping RadioButtons in a DataGrid
Hello, I have a TemplateColumn as the first column in my datagrid to display radiobuttons for selection of rows. The problem is, when the table... -
Checkboxes/Radiobuttons - Help
Hi, I have a problem with checkboxes/radiobuttons displaying on Apple Macs. The checkboxes/radiobuttons display a white border and this is visible... -
RadioButtons & DataGrid
Hi, I have retreived questions and answers from DB tables, and display them into datagrid. QNo Quest A B C 1 Quest1 5 7 9 2 Quest2 A D C... -
runat="server"....a simple html textbox or a webform server textbox...that is the question.
I just realized that the code I inherited is using all asp.net server controls (ie. webform controls) and when I try to update textboxes on the... -
VERY STRANGE BUG? Adding a textbox control causes other textbox control to fail???
I've had this happen a few times too. I'm still not positive of what exactly causes it but all that's happening is the control that no longer... -
Ken Cox [Microsoft MVP] #2
Re: Radiobuttons and textbox with autopost
Hi Sean,
If I understand your problem correctly, you need to store the selected radio
button (I'm using viewstate) when the textbox.changed event fires. Then, as the
page refreshes, you need to set the button to its previous value. Here's some
code that might get you moving:
Private Sub Page_Load _
(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles MyBase.Load
If Not IsPostBack Then
RadioButtonList1.SelectedIndex = _
RadioButtonList1.Items.IndexOf _
(viewstate("selval"))
End If
End Sub
Private Sub TextBox1_TextChanged _
(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles TextBox1.TextChanged
Label1.Text = RadioButtonList1.SelectedValue
viewstate("selval") = _
RadioButtonList1.SelectedValue
End Sub
Does this help?
Ken
MVP [ASP.NET]
"Sean" <nospam@> wrote in message news:u90PyU6WDHA.2284@TK2MSFTNGP10.phx.gbl...
hi,
i have a radiobuttonlist which i have set the autopostback feature to false, so
it would be easier to navigate thru' it, using the keyboard.
below the radiobuttonslist, i have a textbox which then has a method which
fires , and i would need the value of the selected radiobutton.
since it does a postback, the value of the selected button goes to the default
and i can't seem to pick up that value ..
any suggestions ??
Thank You for your feedback and inputs
--
Thank You,
Sean
Ken Cox [Microsoft MVP] Guest



Reply With Quote

