Click here to Skip to main content
15,921,905 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: call function Pin
Abhijit Jana17-Jan-09 3:21
professionalAbhijit Jana17-Jan-09 3:21 
GeneralRe: call function Pin
amin saffari17-Jan-09 3:30
amin saffari17-Jan-09 3:30 
GeneralRe: call function Pin
Christian Graus17-Jan-09 11:07
protectorChristian Graus17-Jan-09 11:07 
AnswerRe: call function Pin
amin saffari17-Jan-09 8:18
amin saffari17-Jan-09 8:18 
Questionwhat is an "Assembly" in ASP.NET Pin
Subin Alex17-Jan-09 2:24
Subin Alex17-Jan-09 2:24 
AnswerRe: what is an "Assembly" in ASP.NET Pin
sjs4u17-Jan-09 2:27
sjs4u17-Jan-09 2:27 
AnswerRe: what is an "Assembly" in ASP.NET Pin
Abhijit Jana17-Jan-09 2:43
professionalAbhijit Jana17-Jan-09 2:43 
AnswerWhat is "Google?" Pin
leckey17-Jan-09 15:21
leckey17-Jan-09 15:21 
QuestionQuery Problem Pin
sjs4u17-Jan-09 2:03
sjs4u17-Jan-09 2:03 
AnswerRe: Query Problem Pin
Abhijit Jana17-Jan-09 2:06
professionalAbhijit Jana17-Jan-09 2:06 
QuestionHow can I load a file same as RSS using URL? Pin
mkomasi17-Jan-09 1:32
mkomasi17-Jan-09 1:32 
AnswerRe: How can I load a file same as RSS using URL? Pin
Christian Graus17-Jan-09 1:49
protectorChristian Graus17-Jan-09 1:49 
Questioncustom paging for gridview Pin
sandhya1417-Jan-09 0:11
sandhya1417-Jan-09 0:11 
AnswerRe: custom paging for gridview Pin
Abhijit Jana17-Jan-09 0:19
professionalAbhijit Jana17-Jan-09 0:19 
GeneralRe: custom paging for gridview Pin
sandhya1418-Jan-09 18:48
sandhya1418-Jan-09 18:48 
Questiongetting problem in model window Pin
NidhiKanu16-Jan-09 23:53
professionalNidhiKanu16-Jan-09 23:53 
AnswerRe: getting problem in model window Pin
Guffa17-Jan-09 0:09
Guffa17-Jan-09 0:09 
GeneralRe: getting problem in model window Pin
NidhiKanu17-Jan-09 0:12
professionalNidhiKanu17-Jan-09 0:12 
GeneralRe: getting problem in model window Pin
Guffa17-Jan-09 0:24
Guffa17-Jan-09 0:24 
GeneralRe: getting problem in model window Pin
NidhiKanu17-Jan-09 0:38
professionalNidhiKanu17-Jan-09 0:38 
GeneralRe: getting problem in model window Pin
NidhiKanu17-Jan-09 0:51
professionalNidhiKanu17-Jan-09 0:51 
GeneralRe: getting problem in model window Pin
Abhijit Jana17-Jan-09 1:09
professionalAbhijit Jana17-Jan-09 1:09 
GeneralRe: getting problem in model window Pin
NidhiKanu17-Jan-09 1:54
professionalNidhiKanu17-Jan-09 1:54 
Question[newbie] Wizard Control Pin
jon-8016-Jan-09 22:37
professionaljon-8016-Jan-09 22:37 
AnswerRe: [newbie] Wizard Control Pin
Abhijit Jana16-Jan-09 23:54
professionalAbhijit Jana16-Jan-09 23:54 
jon_80 wrote:
I would like to create conditionals, for example if the user selected an option within step one, step two would be a particular screen, whilst, if the user selected another option, another screen would be displayed. Is this possible?


Yes You can create It easily Smile | :)

I have just made a small sample for you . Just Add a Wizard , Wizard1. Add 4 Steps. Now in Second Step I have added two option button . I want if user select Option1, It will go to Step3 or if select it will go to step 4.

Here is the demo code
protected void Wizard1_NextButtonClick(object sender, WizardNavigationEventArgs e)
    {
        switch (e.CurrentStepIndex) // Read Current Step
        {
            case 1: // Means Second Steps
                if (RadioButton1.Checked)
                    Wizard1.ActiveStep = 2; // Move to step 3
                else if (RadioButton2.Checked)
                    Wizard1.ActiveStep = 3; //move to step 4
                break;

        }
    }


Hope This will do for you Wink | ;)

cheers,
Abhijit
CodeProject MVP
My Recent Article : Exploring Session in ASP.Net

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.