radio button default selection
-
Hi I have radio buttons in my web page i need to set default status to No radio button, by writing checked=true in aspx code The problem is when i am changing the selection by selecting Yes it is not setting the new value, old value is getting persist I know this is silly question but i am facing it i am using update panel
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
Hi I have radio buttons in my web page i need to set default status to No radio button, by writing checked=true in aspx code The problem is when i am changing the selection by selecting Yes it is not setting the new value, old value is getting persist I know this is silly question but i am facing it i am using update panel
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
You may be setting the the checked=true in the page load event . Place the code in the if (! Page.isPostback) { checked=true ; } Try and come back Regards Dana
-
Hi I have radio buttons in my web page i need to set default status to No radio button, by writing checked=true in aspx code The problem is when i am changing the selection by selecting Yes it is not setting the new value, old value is getting persist I know this is silly question but i am facing it i am using update panel
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
try on group property of radio button
-
You may be setting the the checked=true in the page load event . Place the code in the if (! Page.isPostback) { checked=true ; } Try and come back Regards Dana
Ya i know that but i can't do that as i have to populate whta user has selected when user visit this page again
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "
-
try on group property of radio button
Group is for grouping radio buttons
Thanks and Regards Sandeep If If you look at what you do not have in life, you don't have anything, If you look at what you have in life, you have everything... "