Learn to use the WebDialogWindow to create a series of wizard steps. See how even while controls are hidden from the user you still retain programmatic access to all UI controls.
Duration: 10:30
Learn the basics of interacting with the WebDialogWindow in your web pages. See how the window is launched server as well as client-side. Featured in this demonstration is the WebDialogWindows default behavior of automatically persisting position coordinates…
Learn to use the WebDialogWindow while harnessing the auto-post back events, client side events and the resizing behavior.
Duration: 8:10
You can add controls dynamically to the WebDialogWindow by adding to the ContentPane.Controls collection.
//Create a textbox TextBox tb = new TextBox(); tb.ID = "tb1"; tb.Text = "text"; //Add the textbox to the DialogWindow's ContentPane Control…