boatsonline
New Member
I have a Function Which will send the emails to different recievers say Actor1, actor2 etc. Before sending the auto generated email the user should be able to edit it. I have used a placeholder to display the autogenered email content and a textbox to add the new content. My function looks like this\[code\]public void SendEmail(var content){...display1= actor1content;........dsplay2=actor2content;}\[/code\]Here display1 and display2 are the controls which i am putting to placeholder. Now after function execution two displays will come together. How can I make the function to make display1 to appear first and then continue function execution and again make display2 appear.