try
{
Response.Write("Try Block:");
return;
}
catch (Exception ex)
{

throw;
}
finally
{
Response.Write("Finally Block");
}
What will be the output for the above code?

 Posted by Lakhangarg on 9/14/2009 | Category: ASP.NET Interview questions | Views: 15681
Select from following answers:
  1. Try Block:Finally Block
  2. Try Block:
  3. Finally Block
  4. None of the above
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response