Click here to Skip to main content
15,918,808 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Controlling User Controls [modified] Pin
sundar15620-Sep-06 10:30
sundar15620-Sep-06 10:30 
QuestionRunning ASP.NET 2.0 project from localhost.... Pin
Kasic Slobodan18-Sep-06 3:29
Kasic Slobodan18-Sep-06 3:29 
AnswerRe: Running ASP.NET 2.0 project from localhost.... Pin
minhpc_bk18-Sep-06 15:30
minhpc_bk18-Sep-06 15:30 
GeneralRe: Running ASP.NET 2.0 project from localhost.... Pin
Kasic Slobodan28-Sep-06 4:50
Kasic Slobodan28-Sep-06 4:50 
GeneralRe: Running ASP.NET 2.0 project from localhost.... Pin
minhpc_bk28-Sep-06 22:14
minhpc_bk28-Sep-06 22:14 
Questionhow to create wizard web custom control in asp 2.0 Pin
shadesRulz18-Sep-06 3:28
shadesRulz18-Sep-06 3:28 
AnswerRe: how to create wizard web custom control in asp 2.0 Pin
Sathesh Sakthivel18-Sep-06 3:39
Sathesh Sakthivel18-Sep-06 3:39 
GeneralRe: how to create wizard web custom control in asp 2.0 Pin
shadesRulz18-Sep-06 4:21
shadesRulz18-Sep-06 4:21 
hi Satips,
well, the link shows how to create in standalone website.
but am talking how to generate the same thru code.

something like we do in creating web custom control like this

protected override void CreateChildControls()
{
Wizard myWizard = new Wizard();

//myWizard.DisplaySideBar = false;
myWizard.Height = 300;
myWizard.Width = 300;
myWizard.BorderColor = Color.Black;
myWizard.BorderWidth = new Unit(2);

WizardStepBase WIZARDSTEP1 = new WizardStep();
WIZARDSTEP1.ID = "0";
Label first = new Label();
first.Text = "first";
WIZARDSTEP1.Controls.Add(first);
WIZARDSTEP1.StepType = WizardStepType.Start;
myWizard.WizardSteps.Add(WIZARDSTEP1);

WizardStepBase WIZARDSTEP2 = new WizardStep();
WIZARDSTEP2.ID = "1";
Label second = new Label();
second.Text = "second";
WIZARDSTEP2.Controls.Add(second);
WIZARDSTEP2.StepType = WizardStepType.Step;
myWizard.WizardSteps.Add(WIZARDSTEP2);

WizardStepBase WIZARDSTEP3 = new WizardStep();
WIZARDSTEP3.ID = "2";
Label three = new Label();
three.Text = "three";
WIZARDSTEP3.Controls.Add(three);
WIZARDSTEP3.StepType = WizardStepType.Complete;
myWizard.WizardSteps.Add(WIZARDSTEP3);

Controls.Add(myWizard);
}
}

ShadesRulz

Questionuser controls Pin
ajmurdoch18-Sep-06 3:26
ajmurdoch18-Sep-06 3:26 
AnswerRe: user controls Pin
minhpc_bk18-Sep-06 15:35
minhpc_bk18-Sep-06 15:35 
GeneralRe: user controls Pin
ajmurdoch19-Sep-06 0:03
ajmurdoch19-Sep-06 0:03 
GeneralRe: user controls Pin
minhpc_bk19-Sep-06 0:35
minhpc_bk19-Sep-06 0:35 
GeneralRe: user controls Pin
ajmurdoch19-Sep-06 5:46
ajmurdoch19-Sep-06 5:46 
Questionweb service deployment + help needed Pin
Naveed Kamboh18-Sep-06 3:25
Naveed Kamboh18-Sep-06 3:25 
GeneralRe: web service deployment + help needed Pin
todd.0101110118-Sep-06 9:47
todd.0101110118-Sep-06 9:47 
GeneralRe: web service deployment + help needed [modified] Pin
Naveed Kamboh18-Sep-06 22:42
Naveed Kamboh18-Sep-06 22:42 
GeneralRe: web service deployment + help needed Pin
Naveed Kamboh18-Sep-06 23:02
Naveed Kamboh18-Sep-06 23:02 
Questionsecured socket layers in vb.net 1.1 with asp.net 1.1 Pin
sandeep_thakur18-Sep-06 3:21
sandeep_thakur18-Sep-06 3:21 
AnswerRe: secured socket layers in vb.net 1.1 with asp.net 1.1 Pin
Sathesh Sakthivel18-Sep-06 3:28
Sathesh Sakthivel18-Sep-06 3:28 
QuestionRe: secured socket layers in vb.net 1.1 with asp.net 1.1 Pin
amaneet18-Sep-06 4:50
amaneet18-Sep-06 4:50 
AnswerRe: secured socket layers in vb.net 1.1 with asp.net 1.1 Pin
Sathesh Sakthivel18-Sep-06 17:52
Sathesh Sakthivel18-Sep-06 17:52 
Questionasp.net control output html into string Pin
P. S. Pundeer18-Sep-06 3:11
P. S. Pundeer18-Sep-06 3:11 
AnswerRe: asp.net control output html into string Pin
minhpc_bk18-Sep-06 15:38
minhpc_bk18-Sep-06 15:38 
QuestionCustomising Google Search Engine Pin
Sathiyaraj Ganesan18-Sep-06 2:49
Sathiyaraj Ganesan18-Sep-06 2:49 
QuestionEnable securiyt setting in IE Pin
lucluv18-Sep-06 2:21
lucluv18-Sep-06 2:21 

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.