Well, all the launch events I have attended are now over, I spoke in London (14th), Harrogate (22nd) and Manchester (24th).
Here are some snaps of me taken at Manchester.
I hope people enjoyed them!
[Ajax.AjaxMethod()]
public string ShowSomeControl(int SomeId)
{
System.Text.StringBuilder sb = new System.Text.StringBuilder();
System.Web.UI.HtmlTextWriter textWriter = new System.Web.UI.HtmlTextWriter(new System.IO.StringWriter(sb));
Plip.UserControls.PlipControl objControl = (Plip.UserControls.PlipControl) LoadControl("~/PlipControl.ascx");
objControl.SomeValue = MessageId;
if (objControl != null)
{
objControl.RenderControl(textWriter);
}
return sb.ToString();
}