To create the tabs, from the ASP.NET AJAX Control Toolkit tab on the Toolbox in
Visual Studio, drag and drop a new TabContainer control onto the page with the
tag of the main UpdatePanel. You can then use the designer window
to add three tabs (TabPanel controls) to the TabContainer control and name them ???Basic
Quote???, ???Price History???, and ???Charts & Analytics???, respectively. Lastly, specify an event
CHAPTER 10 ?– BUILDING A SAMPLE APPLICATION USING ASP.NET AJAX 229
handler for the ActiveTabChanged event. This, of course, can also be done in code as
shown in the following segment:
AutoPostBack=true OnActiveTabChanged="TabContainer1_ActiveTabChanged">
Basic Quote
Price History
.
Pages:
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323