In this video I’ll demonstrate the Wizard control. The Wizard works very similar to MultiView which breaks a page into different views. The Wizard can be used to create a multiple step forms, so you can have step 1, step 2, step 3 etc until your user reaches the finish step and they can click [...]
Archive for the ‘Premium Video Tutorials’ Category
59) ASP.NET MultiView Control
In this video I’ll demonstrate a MultiView control which allow you to create multiple view on a single page. For example you can use the MultiView to hide and show different areas of a page. MultiView has a very little properties you can configure on the properties window. You need to go insid[...]
58) ASP.NET AdRotator Control
In this video I am going to demonstrate how to use the AdRotator control. This control is used to display advertisements on your web page. You can have as many banner advertisement inside your database or xml file that will be rotated when your page is loaded. In this video I use an XML file [...][...]
57) ASP.NET Calendar Control
In this video I am going to be discussing the Calendar control. Calendar control is an advanced control and has lots of options that you can modify from the properties windows. There are different selection modes, you can enable Day selection so that only days can be selected, you can set it to DayW[...]
56) Performing ASP.NET Cross-Page Posts
In this video I am going to show you how to do cross-page posting so you can send information from one page to another page when a button is clicked. If you do not set the property of a button called PostBackUrl to another page, the page is posted back to itself. [Content protected for Registered [.[...]
55) ASP.NET Button OnClientClick and xpando Attributes
In this video I’ll be discussing two important properties of the Button control. Button are meant to always raise events on the server. We can use a property of a button known as OnClientClick to execute a javascript within your browser before the server event is raised. I used the javascript [...]
54) ASP.NET Panel Control
In this video I’ll discussing the Panel control which is a very useful control to use on your web form. Panel enables you to work with multiple ASP.NET control as a group. You can use Panel to group together ASP.NET controls, then use the Visible property to either show all these controls or h[...]
53) Displaying Text With Label and Literal Controls
In this video I’ll be looking at how to display text inside the web form. You can type your text directly inside your web form, if you want the text to be changed dynamically during runtime you can use the Literal control and the Label control. The label control is rendered as span tag by [...[...]
52) Visual Web Developer Debugger – Usign Breakpoint
In this video I’ll be discussing how to use the breakpoint in Visual Web Developer so that you can step into your application code one line at a time so you can understand the sequence in which your statements executes. I have used the breakpoint to debug my application so that I have a better[...]
51) ASP.NET Pages Debugging and Tracing
In this video I’ll be looking at website debugging, you need to learn different ways to debug your application so you can easily fix errors. If you need to get detailed error message when you execute a page on your website, you need to either enable debugging on the page directive or you can u[...]