I have a div on the aspx page in which I have created an onClick event.
The onClick for the div points to:
onclick="'javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$ContentPlaceHolder1$Wizard1$StepNavigationTemplateContainerID$StepNextButton", "", true, "", "", false, f...
Happy Friday All,
I have an ASP.net 2.0 website that I'm updating to .Net 3.5. The site uses a master page and I've placed asp:UpdatePanel in it.
One of the pages has a 3-step wizard control that I'd like to "Ajaxify" in some way. Are there better controls in the AJAX control toolkit that provide an improved user experience over th...
Hello,
I have a asp:Wizard control on a site running Framework 3.5. I acquired the settings from the web host and have entered them into the Web Configuration Utility. Here's the code behind file:
Protected Sub Wizard1_FinishButtonClick(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.WizardNavigationEventArgs) Handles Wi...
I'm getting errors in a few of my pages:
Error Message: Invalid character in a Base-64 string.
Error Source: mscorlib
Error Target Site: Byte[] FromBase64String(System.String)
Error Message: Unable to validate data.
Error Source: System.Web
Error Target Site: Byte[] GetDecodedData(Byte[], Byte[], Int32, Int32, Int32 ByRef)
Error Messa...
I'm new to the ASP.NET's Wizard control and couldn't make it work. I guess there is a minor issue in the code that prevent the wizard from displaying. Here is the code snippet that I put inside a server form.
<asp:Wizard id="Wizard1" runat="server" >
<asp:WizardSteps>
<asp:WizardStep runat="server" id="firstStep" Title="First s...
Hi,
I've been stuck with this problem where there are 3 steps in an asp wizard control. The first step has a radiobutton (yes and no) and based on the radio button input chosen by the user, i would need to hide or show a label in the second wizardstep.
Example:
Step 1: Choose 1 among the two options: Yes No (radStep1)
Step 2: if the...