vivian


{ City } mangalore
< Country > india
* Profession * .net developer
User No # 59294
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 23
Users Marked my Answers as Wrong # 3
Questions / { vivian }
Questions Answers Category Views Company eMail




Answers / { vivian }

Question { 9612 }

I want to ask u that if i add radio button in ado.net
form,and how radion button data insert in SQL2005 Database...


Answer

RadioButton control doesn't have SelectedItem property. You
need to use the Checked property of the RadioButton.

Is This Answer Correct ?    10 Yes 3 No

Question { Cap Gemini, 9364 }

If I have code like
try
{
return;
}
catch
{
return;
}
finally
{
return;
}

from which block will the value will be returned. and try
has been executed without any error.


Answer

Finally block will not return any values as it gives
error "Control cannot leave the body of a finally clause".
The finally block is useful for cleaning up any resources
allocated in the try block.

Is This Answer Correct ?    13 Yes 0 No