|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
i want to pass a value of which radio button is clicked to someanother form and retrieve that value on that form'
can anyone suggest a simplemethod like request.querystring |
|
#2
|
|||
|
|||
|
Use a variable to store the value of the radio button.
eg: Dim radioVal as boolean Assign the value of the radio button to the variable radioVal. When you are ready to pass it to the next page, use this code: response.redirect("nextpage.aspx?buttonVal=" & radioVal) In your "nextpage.aspx", declare a variable to store the value that was passed, like this: Dim buttonVal as boolean buttonVal=request.querystring("buttonVal") Hope this helps. |
![]() |
| Viewing: Dev Articles Community Forums > Programming > .NET Development > asp.net want a simple help |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|