Finally block's content is running before try's content?

Chaospratan

New Member
How can I fix the below code so that finally part is not overwriten and I can see "This is a regular text" in lbl.Process's Text?\[code\]try{ grd_Order.SaveClicked(sender, e); //This is a button's Clicked event, which redirects to the same page after saving. }catch{}finally{ lbl_Process.Text = "This is a regular text" //Some more process}\[/code\]Edit: Whenever I simplify my code to make my question more understandable, I face the same thing. Many many misunderstandings.
 
Back
Top