Question: How to change sidebar template of the wizard control so that only previous wizard steps would be enabled? Answer:Create something like this in your *.aspx file: [crayon-55a68bd1c7b08891832672/] And create something like this in your *.aspx.cs file: [code lang=”cpp”] protected void SideBarList_ItemDataBound(object sender, DataListItemEventArgs e) { WizardStep dataItem = e.Item.DataItem as WizardStep; LinkButton linkButton = […]
↧