Click here to Skip to main content
16,009,640 members
Home / Discussions / ASP.NET
   

ASP.NET

 
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

GeneralRe: [newbie] Wizard Control [modified] Pin
jon-8018-Jan-09 8:45
professionaljon-8018-Jan-09 8:45 
QuestionMultiple Update Panels in a Page not firing Pin
meeram39516-Jan-09 21:17
meeram39516-Jan-09 21:17 
AnswerRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana16-Jan-09 21:31
professionalAbhijit Jana16-Jan-09 21:31 
GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39516-Jan-09 23:29
meeram39516-Jan-09 23:29 
GeneralRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana17-Jan-09 0:09
professionalAbhijit Jana17-Jan-09 0:09 
GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39517-Jan-09 17:41
meeram39517-Jan-09 17:41 
GeneralRe: Multiple Update Panels in a Page not firing Pin
Abhijit Jana17-Jan-09 19:54
professionalAbhijit Jana17-Jan-09 19:54 
GeneralRe: Multiple Update Panels in a Page not firing Pin
meeram39518-Jan-09 23:31
meeram39518-Jan-09 23:31 
QuestionSession probs??? Pin
Member 387988116-Jan-09 19:09
Member 387988116-Jan-09 19:09 
AnswerRe: Session probs??? Pin
Abhijit Jana16-Jan-09 19:27
professionalAbhijit Jana16-Jan-09 19:27 
AnswerRe: Session probs??? Pin
Aman Bhullar16-Jan-09 19:33
Aman Bhullar16-Jan-09 19:33 

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.