Click here to Skip to main content
15,908,173 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Grouping session variables Pin
firestoper10-Aug-07 19:05
firestoper10-Aug-07 19:05 
GeneralRe: Grouping session variables Pin
petersgyoung10-Aug-07 19:50
petersgyoung10-Aug-07 19:50 
QuestionSQLDataSource Inserting Pin
hurrem10-Aug-07 12:50
hurrem10-Aug-07 12:50 
AnswerRe: SQLDataSource Inserting Pin
Fred_Smith10-Aug-07 13:06
Fred_Smith10-Aug-07 13:06 
Questionhost window component in ASP.NET Pin
mhp13010-Aug-07 11:09
mhp13010-Aug-07 11:09 
Questionerror in radgride of aspx page Pin
avinol10-Aug-07 10:43
avinol10-Aug-07 10:43 
AnswerRe: error in radgride of aspx page Pin
petersgyoung12-Aug-07 15:19
petersgyoung12-Aug-07 15:19 
QuestionWizard containg User control Pin
kjosh10-Aug-07 6:35
kjosh10-Aug-07 6:35 
Hi,
I have defined the User control which containg one label and textbox.
<asp:label id="”xx”" …="">
<asp:textbox id="”name”" runat="”server”..">
In the user control class I am defining like this:
Class us: System.Web.UI.UserControl
{
Public string setname
{
Get
{
Return name.text;
}
Set
{
Name.text=value;
}
}
Page_load()
{
}
I am using that user control in another aspx page. In which I placed the the above User control in a Wizard control.
<asp:wizard ..="">
<tt.name id="”ci”"> declaring usercontrol inside wizard.

From this aspx I am trying to set the value for the name textbox which is in User control when the Wizard Finish button is clicked.
Like this:
protected void Wizard2_FinishButtonClick(object sender, WizardNavigationEventArgs e)
{

ci.setname = "hh";
}
But this event is not firing when I remove the User control from the Wizard this event is firing.
And when I write the Page_load of aspx page
Aspx page page_load
{
If(!isPostaback)
{
ci.setname=”kk”;
}
If I put like this in the PageLoad’s !ispostback then wizrd finish event is workng.
Withoyt setting the ci.setname in the Page_load I need to set only in the finish button click.
How to do this?

Thanks
QuestionPostback problem from ASP.NET page Pin
LancashireLad10-Aug-07 6:10
LancashireLad10-Aug-07 6:10 
AnswerRe: Postback problem from ASP.NET page Pin
Michael Sync10-Aug-07 6:54
Michael Sync10-Aug-07 6:54 
GeneralRe: Postback problem from ASP.NET page Pin
LancashireLad10-Aug-07 7:32
LancashireLad10-Aug-07 7:32 
GeneralRe: Postback problem from ASP.NET page Pin
LancashireLad10-Aug-07 8:56
LancashireLad10-Aug-07 8:56 
GeneralRe: Postback problem from ASP.NET page Pin
Michael Sync10-Aug-07 16:21
Michael Sync10-Aug-07 16:21 
AnswerRe: Postback problem from ASP.NET page Pin
Guffa10-Aug-07 9:41
Guffa10-Aug-07 9:41 
GeneralRe: Postback problem from ASP.NET page Pin
LancashireLad10-Aug-07 10:41
LancashireLad10-Aug-07 10:41 
AnswerRe: Postback problem from ASP.NET page Pin
Fred_Smith10-Aug-07 11:44
Fred_Smith10-Aug-07 11:44 
GeneralRe: Postback problem from ASP.NET page Pin
LancashireLad11-Aug-07 3:16
LancashireLad11-Aug-07 3:16 
GeneralRe: Postback problem from ASP.NET page Pin
LancashireLad11-Aug-07 3:25
LancashireLad11-Aug-07 3:25 
QuestionCalculate distinces between 2 location Pin
DonVBguy10-Aug-07 5:26
DonVBguy10-Aug-07 5:26 
AnswerRe: Calculate distinces between 2 location Pin
Guffa10-Aug-07 5:56
Guffa10-Aug-07 5:56 
AnswerRe: Calculate distinces between 2 location Pin
Jon Sagara10-Aug-07 8:45
Jon Sagara10-Aug-07 8:45 
QuestionHow to get or set value/text of disabled dropdown list in java script Pin
here2learn10-Aug-07 5:19
here2learn10-Aug-07 5:19 
AnswerRe: How to get or set value/text of disabled dropdown list in java script Pin
Guffa10-Aug-07 5:28
Guffa10-Aug-07 5:28 
GeneralRe: How to get or set value/text of disabled dropdown list in java script Pin
here2learn12-Aug-07 18:50
here2learn12-Aug-07 18:50 
QuestionOverFlow Property in HTML 4.01 Pin
nandhububbly10-Aug-07 4:05
nandhububbly10-Aug-07 4:05 

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.