473,671 Members | 2,298 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

my button died and I'm totally lost

Hi-

I had this nice little wizard application running. It was comprised of
several Panel controls initially set w/ their visibility off except for the
first one, then as you progress through the page, a code-behind method would
manage the correct panel's visibility, giving the illusion of separate
steps. Fine, great.

All the panels has server button controls for "Next" and "Previous"
The last panel has a button control (server of course) that would call a
different Click event than the other buttons in the previous panels.

I did something, I don't know what but when I click the button "Finish"... .
the event never fires, digging deeper I realized that Page_Load() isn't even
firing. So... what it does is make the window flash, then it all goes
white. The page never posts.

Here is the rendered HTML for the button:
<input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
(typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
language="javas cript" id="Button_Fini sh" />

I think it has something to do with the button being inside a panel.

Actually, I just found out why it's not working.... there is no
Page_ClientVali date() function in the rendered HTML. I guess it creates it
in the first panel that holds a button that Causes Validation, then later
when I hide that panel, there is no script rendered. This is speculation of
course, but if this is the case.... I would think that this would be a bug,
wouldn't you.

Thoughts? Suggestions??

Anything would be cool,

Thanks,
Steve

Nov 18 '05 #1
10 1314
OK, so I turned off validation. It still won't post. I've put a breakpoint
right in Page_Load and it doesn't fire

here is the rendered HTML for the button
<input type="submit" name="Button_Fi nish" value="FINISH" id="Button_Fini sh"
/>
looks fine to me?.....

"Steve" <st***@nowhere. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hi-

I had this nice little wizard application running. It was comprised of
several Panel controls initially set w/ their visibility off except for the first one, then as you progress through the page, a code-behind method would manage the correct panel's visibility, giving the illusion of separate
steps. Fine, great.

All the panels has server button controls for "Next" and "Previous"
The last panel has a button control (server of course) that would call a
different Click event than the other buttons in the previous panels.

I did something, I don't know what but when I click the button "Finish"... . the event never fires, digging deeper I realized that Page_Load() isn't even firing. So... what it does is make the window flash, then it all goes
white. The page never posts.

Here is the rendered HTML for the button:
<input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
(typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
language="javas cript" id="Button_Fini sh" />

I think it has something to do with the button being inside a panel.

Actually, I just found out why it's not working.... there is no
Page_ClientVali date() function in the rendered HTML. I guess it creates it in the first panel that holds a button that Causes Validation, then later
when I hide that panel, there is no script rendered. This is speculation of course, but if this is the case.... I would think that this would be a bug, wouldn't you.

Thoughts? Suggestions??

Anything would be cool,

Thanks,
Steve

Nov 18 '05 #2
Check your On_Load event, it's generated by the IDE. Sometimes stuff gets
deleted from there. You might have to add the delegate manually

"Steve" <st***@nowhere. com> wrote in message
news:uN******** ******@TK2MSFTN GP09.phx.gbl...
OK, so I turned off validation. It still won't post. I've put a breakpoint right in Page_Load and it doesn't fire

here is the rendered HTML for the button
<input type="submit" name="Button_Fi nish" value="FINISH" id="Button_Fini sh" />
looks fine to me?.....

"Steve" <st***@nowhere. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hi-

I had this nice little wizard application running. It was comprised of
several Panel controls initially set w/ their visibility off except for the
first one, then as you progress through the page, a code-behind method

would
manage the correct panel's visibility, giving the illusion of separate
steps. Fine, great.

All the panels has server button controls for "Next" and "Previous"
The last panel has a button control (server of course) that would call a
different Click event than the other buttons in the previous panels.

I did something, I don't know what but when I click the button

"Finish"... .
the event never fires, digging deeper I realized that Page_Load() isn't

even
firing. So... what it does is make the window flash, then it all goes
white. The page never posts.

Here is the rendered HTML for the button:
<input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
(typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
language="javas cript" id="Button_Fini sh" />

I think it has something to do with the button being inside a panel.

Actually, I just found out why it's not working.... there is no
Page_ClientVali date() function in the rendered HTML. I guess it creates

it
in the first panel that holds a button that Causes Validation, then later when I hide that panel, there is no script rendered. This is

speculation of
course, but if this is the case.... I would think that this would be a

bug,
wouldn't you.

Thoughts? Suggestions??

Anything would be cool,

Thanks,
Steve


Nov 18 '05 #3
Check the InitilizeCompon ent() function. Most likly the Page_Load event
wiring has been removed by the designer.
Has happened to me a few times.
"Steve" <st***@nowhere. com> wrote in message
news:uN******** ******@TK2MSFTN GP09.phx.gbl...
OK, so I turned off validation. It still won't post. I've put a breakpoint right in Page_Load and it doesn't fire

here is the rendered HTML for the button
<input type="submit" name="Button_Fi nish" value="FINISH" id="Button_Fini sh" />
looks fine to me?.....

"Steve" <st***@nowhere. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hi-

I had this nice little wizard application running. It was comprised of
several Panel controls initially set w/ their visibility off except for the
first one, then as you progress through the page, a code-behind method

would
manage the correct panel's visibility, giving the illusion of separate
steps. Fine, great.

All the panels has server button controls for "Next" and "Previous"
The last panel has a button control (server of course) that would call a
different Click event than the other buttons in the previous panels.

I did something, I don't know what but when I click the button

"Finish"... .
the event never fires, digging deeper I realized that Page_Load() isn't

even
firing. So... what it does is make the window flash, then it all goes
white. The page never posts.

Here is the rendered HTML for the button:
<input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
(typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
language="javas cript" id="Button_Fini sh" />

I think it has something to do with the button being inside a panel.

Actually, I just found out why it's not working.... there is no
Page_ClientVali date() function in the rendered HTML. I guess it creates

it
in the first panel that holds a button that Causes Validation, then later when I hide that panel, there is no script rendered. This is

speculation of
course, but if this is the case.... I would think that this would be a

bug,
wouldn't you.

Thoughts? Suggestions??

Anything would be cool,

Thanks,
Steve


Nov 18 '05 #4
Thanks for the responses guys,

That was however the first thing that I checked, I made sure everything was
still wired up.

thanks though!
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Check the InitilizeCompon ent() function. Most likly the Page_Load event
wiring has been removed by the designer.
Has happened to me a few times.
"Steve" <st***@nowhere. com> wrote in message
news:uN******** ******@TK2MSFTN GP09.phx.gbl...
OK, so I turned off validation. It still won't post. I've put a

breakpoint
right in Page_Load and it doesn't fire

here is the rendered HTML for the button
<input type="submit" name="Button_Fi nish" value="FINISH"

id="Button_Fini sh"
/>
looks fine to me?.....

"Steve" <st***@nowhere. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
Hi-

I had this nice little wizard application running. It was comprised of several Panel controls initially set w/ their visibility off except for
the
first one, then as you progress through the page, a code-behind method

would
manage the correct panel's visibility, giving the illusion of separate
steps. Fine, great.

All the panels has server button controls for "Next" and "Previous"
The last panel has a button control (server of course) that would call
a different Click event than the other buttons in the previous panels.

I did something, I don't know what but when I click the button

"Finish"... .
the event never fires, digging deeper I realized that Page_Load()
isn't even
firing. So... what it does is make the window flash, then it all goes
white. The page never posts.

Here is the rendered HTML for the button:
<input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
(typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
language="javas cript" id="Button_Fini sh" />

I think it has something to do with the button being inside a panel.

Actually, I just found out why it's not working.... there is no
Page_ClientVali date() function in the rendered HTML. I guess it
creates it
in the first panel that holds a button that Causes Validation, then

later when I hide that panel, there is no script rendered. This is

speculation
of
course, but if this is the case.... I would think that this would be a

bug,
wouldn't you.

Thoughts? Suggestions??

Anything would be cool,

Thanks,
Steve



Nov 18 '05 #5
y dont you post you code so we can have a more detailed look on it...

--
Regards,

HD

"Steve" <st***@nowhere. com> wrote in message
news:OE******** ******@tk2msftn gp13.phx.gbl...
Thanks for the responses guys,

That was however the first thing that I checked, I made sure everything was still wired up.

thanks though!
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Check the InitilizeCompon ent() function. Most likly the Page_Load event
wiring has been removed by the designer.
Has happened to me a few times.
"Steve" <st***@nowhere. com> wrote in message
news:uN******** ******@TK2MSFTN GP09.phx.gbl...
OK, so I turned off validation. It still won't post. I've put a breakpoint
right in Page_Load and it doesn't fire

here is the rendered HTML for the button
<input type="submit" name="Button_Fi nish" value="FINISH"

id="Button_Fini sh"
/>
looks fine to me?.....

"Steve" <st***@nowhere. com> wrote in message
news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> Hi-
>
> I had this nice little wizard application running. It was comprised of > several Panel controls initially set w/ their visibility off except for the
> first one, then as you progress through the page, a code-behind method would
> manage the correct panel's visibility, giving the illusion of separate > steps. Fine, great.
>
> All the panels has server button controls for "Next" and "Previous"
> The last panel has a button control (server of course) that would call a
> different Click event than the other buttons in the previous panels.
>
> I did something, I don't know what but when I click the button
"Finish"... .
> the event never fires, digging deeper I realized that Page_Load() isn't even
> firing. So... what it does is make the window flash, then it all
goes > white. The page never posts.
>
> Here is the rendered HTML for the button:
> <input type="submit" name="Button_Fi nish" value="FINISH" onclick="if
> (typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); "
> language="javas cript" id="Button_Fini sh" />
>
> I think it has something to do with the button being inside a panel.
>
> Actually, I just found out why it's not working.... there is no
> Page_ClientVali date() function in the rendered HTML. I guess it

creates it
> in the first panel that holds a button that Causes Validation, then

later
> when I hide that panel, there is no script rendered. This is

speculation
of
> course, but if this is the case.... I would think that this would be a bug,
> wouldn't you.
>
> Thoughts? Suggestions??
>
> Anything would be cool,
>
> Thanks,
> Steve
>
>
>



Nov 18 '05 #6
you guys aren't gonna believe what it was..... the size of the files I was
posting was too big, so it was not a code problem, but I file size problem.

Anyway, thanks for the suggestions, problem solved finally ;)

Take it easy!
"Hermit Dave" <he************ @CAPS.AND.DOTS. hotmail.com> wrote in message
news:ea******** ********@TK2MSF TNGP11.phx.gbl. ..
y dont you post you code so we can have a more detailed look on it...

--
Regards,

HD

"Steve" <st***@nowhere. com> wrote in message
news:OE******** ******@tk2msftn gp13.phx.gbl...
Thanks for the responses guys,

That was however the first thing that I checked, I made sure everything was
still wired up.

thanks though!
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
Check the InitilizeCompon ent() function. Most likly the Page_Load event wiring has been removed by the designer.
Has happened to me a few times.
"Steve" <st***@nowhere. com> wrote in message
news:uN******** ******@TK2MSFTN GP09.phx.gbl...
> OK, so I turned off validation. It still won't post. I've put a
breakpoint
> right in Page_Load and it doesn't fire
>
> here is the rendered HTML for the button
> <input type="submit" name="Button_Fi nish" value="FINISH"
id="Button_Fini sh"
> />
>
>
> looks fine to me?.....
>
> "Steve" <st***@nowhere. com> wrote in message
> news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > Hi-
> >
> > I had this nice little wizard application running. It was comprised
of
> > several Panel controls initially set w/ their visibility off
except
for
> the
> > first one, then as you progress through the page, a code-behind

method > would
> > manage the correct panel's visibility, giving the illusion of separate > > steps. Fine, great.
> >
> > All the panels has server button controls for "Next" and
"Previous" > > The last panel has a button control (server of course) that would

call
a
> > different Click event than the other buttons in the previous panels. > >
> > I did something, I don't know what but when I click the button
> "Finish"... .
> > the event never fires, digging deeper I realized that Page_Load()

isn't
> even
> > firing. So... what it does is make the window flash, then it all

goes > > white. The page never posts.
> >
> > Here is the rendered HTML for the button:
> > <input type="submit" name="Button_Fi nish" value="FINISH" onclick="if > > (typeof(Page_Cl ientValidate) == 'function') Page_ClientVali date(); " > > language="javas cript" id="Button_Fini sh" />
> >
> > I think it has something to do with the button being inside a panel. > >
> > Actually, I just found out why it's not working.... there is no
> > Page_ClientVali date() function in the rendered HTML. I guess it

creates
> it
> > in the first panel that holds a button that Causes Validation, then later
> > when I hide that panel, there is no script rendered. This is
speculation
> of
> > course, but if this is the case.... I would think that this would
be a > bug,
> > wouldn't you.
> >
> > Thoughts? Suggestions??
> >
> > Anything would be cool,
> >
> > Thanks,
> > Steve
> >
> >
> >
>
>



Nov 18 '05 #7
I ran in to that prob before. It set me back a while also.
"Steve" <st***@nowhere. com> wrote in message
news:u8******** ******@TK2MSFTN GP10.phx.gbl...
you guys aren't gonna believe what it was..... the size of the files I was
posting was too big, so it was not a code problem, but I file size problem.
Anyway, thanks for the suggestions, problem solved finally ;)

Take it easy!
"Hermit Dave" <he************ @CAPS.AND.DOTS. hotmail.com> wrote in message
news:ea******** ********@TK2MSF TNGP11.phx.gbl. ..
y dont you post you code so we can have a more detailed look on it...

--
Regards,

HD

"Steve" <st***@nowhere. com> wrote in message
news:OE******** ******@tk2msftn gp13.phx.gbl...
Thanks for the responses guys,

That was however the first thing that I checked, I made sure everything
was
still wired up.

thanks though!
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
> Check the InitilizeCompon ent() function. Most likly the Page_Load event > wiring has been removed by the designer.
> Has happened to me a few times.
>
>
> "Steve" <st***@nowhere. com> wrote in message
> news:uN******** ******@TK2MSFTN GP09.phx.gbl...
> > OK, so I turned off validation. It still won't post. I've put a
> breakpoint
> > right in Page_Load and it doesn't fire
> >
> > here is the rendered HTML for the button
> > <input type="submit" name="Button_Fi nish" value="FINISH"
> id="Button_Fini sh"
> > />
> >
> >
> > looks fine to me?.....
> >
> > "Steve" <st***@nowhere. com> wrote in message
> > news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > > Hi-
> > >
> > > I had this nice little wizard application running. It was comprised of
> > > several Panel controls initially set w/ their visibility off except for
> > the
> > > first one, then as you progress through the page, a code-behind method
> > would
> > > manage the correct panel's visibility, giving the illusion of

separate
> > > steps. Fine, great.
> > >
> > > All the panels has server button controls for "Next" and "Previous" > > > The last panel has a button control (server of course) that
would
call
a
> > > different Click event than the other buttons in the previous panels. > > >
> > > I did something, I don't know what but when I click the button
> > "Finish"... .
> > > the event never fires, digging deeper I realized that
Page_Load() isn't
> > even
> > > firing. So... what it does is make the window flash, then it

all goes
> > > white. The page never posts.
> > >
> > > Here is the rendered HTML for the button:
> > > <input type="submit" name="Button_Fi nish" value="FINISH"

onclick="if > > > (typeof(Page_Cl ientValidate) == 'function')
Page_ClientVali date(); " > > > language="javas cript" id="Button_Fini sh" />
> > >
> > > I think it has something to do with the button being inside a panel. > > >
> > > Actually, I just found out why it's not working.... there is no
> > > Page_ClientVali date() function in the rendered HTML. I guess it
creates
> > it
> > > in the first panel that holds a button that Causes Validation, then > later
> > > when I hide that panel, there is no script rendered. This is
> speculation
> > of
> > > course, but if this is the case.... I would think that this
would be
a
> > bug,
> > > wouldn't you.
> > >
> > > Thoughts? Suggestions??
> > >
> > > Anything would be cool,
> > >
> > > Thanks,
> > > Steve
> > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #8
Yeah, I imagine it could be a common proeblem. Did you find a way to
increase the size allowed?
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
I ran in to that prob before. It set me back a while also.
"Steve" <st***@nowhere. com> wrote in message
news:u8******** ******@TK2MSFTN GP10.phx.gbl...
you guys aren't gonna believe what it was..... the size of the files I was
posting was too big, so it was not a code problem, but I file size

problem.

Anyway, thanks for the suggestions, problem solved finally ;)

Take it easy!
"Hermit Dave" <he************ @CAPS.AND.DOTS. hotmail.com> wrote in message news:ea******** ********@TK2MSF TNGP11.phx.gbl. ..
y dont you post you code so we can have a more detailed look on it...

--
Regards,

HD

"Steve" <st***@nowhere. com> wrote in message
news:OE******** ******@tk2msftn gp13.phx.gbl...
> Thanks for the responses guys,
>
> That was however the first thing that I checked, I made sure

everything was
> still wired up.
>
> thanks though!
>
>
> "Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
> news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
> > Check the InitilizeCompon ent() function. Most likly the Page_Load

event
> > wiring has been removed by the designer.
> > Has happened to me a few times.
> >
> >
> > "Steve" <st***@nowhere. com> wrote in message
> > news:uN******** ******@TK2MSFTN GP09.phx.gbl...
> > > OK, so I turned off validation. It still won't post. I've put a > > breakpoint
> > > right in Page_Load and it doesn't fire
> > >
> > > here is the rendered HTML for the button
> > > <input type="submit" name="Button_Fi nish" value="FINISH"
> > id="Button_Fini sh"
> > > />
> > >
> > >
> > > looks fine to me?.....
> > >
> > > "Steve" <st***@nowhere. com> wrote in message
> > > news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > > > Hi-
> > > >
> > > > I had this nice little wizard application running. It was

comprised
> of
> > > > several Panel controls initially set w/ their visibility off

except
> for
> > > the
> > > > first one, then as you progress through the page, a code-behind method
> > > would
> > > > manage the correct panel's visibility, giving the illusion of
separate
> > > > steps. Fine, great.
> > > >
> > > > All the panels has server button controls for "Next" and

"Previous"
> > > > The last panel has a button control (server of course) that would call
> a
> > > > different Click event than the other buttons in the previous

panels.
> > > >
> > > > I did something, I don't know what but when I click the button
> > > "Finish"... .
> > > > the event never fires, digging deeper I realized that Page_Load() > isn't
> > > even
> > > > firing. So... what it does is make the window flash, then it all goes
> > > > white. The page never posts.
> > > >
> > > > Here is the rendered HTML for the button:
> > > > <input type="submit" name="Button_Fi nish" value="FINISH"

onclick="if
> > > > (typeof(Page_Cl ientValidate) == 'function')

Page_ClientVali date();
"
> > > > language="javas cript" id="Button_Fini sh" />
> > > >
> > > > I think it has something to do with the button being inside a

panel.
> > > >
> > > > Actually, I just found out why it's not working.... there is no > > > > Page_ClientVali date() function in the rendered HTML. I guess it > creates
> > > it
> > > > in the first panel that holds a button that Causes Validation,

then
> > later
> > > > when I hide that panel, there is no script rendered. This is
> > speculation
> > > of
> > > > course, but if this is the case.... I would think that this

would
be
a
> > > bug,
> > > > wouldn't you.
> > > >
> > > > Thoughts? Suggestions??
> > > >
> > > > Anything would be cool,
> > > >
> > > > Thanks,
> > > > Steve
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #9
Yes, web.config - maxRequestLengt h = "Number of KB" - my example is 30
mb.

<configuratio n>
<system.web>
<httpRuntime maxRequestLengt h="30720" />
</system.web>
</configuration>

"Steve" <st***@nowhere. com> wrote in message
news:u1******** *****@TK2MSFTNG P12.phx.gbl...
Yeah, I imagine it could be a common proeblem. Did you find a way to
increase the size allowed?
"Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
news:eF******** ******@TK2MSFTN GP09.phx.gbl...
I ran in to that prob before. It set me back a while also.
"Steve" <st***@nowhere. com> wrote in message
news:u8******** ******@TK2MSFTN GP10.phx.gbl...
you guys aren't gonna believe what it was..... the size of the files I was posting was too big, so it was not a code problem, but I file size problem.

Anyway, thanks for the suggestions, problem solved finally ;)

Take it easy!
"Hermit Dave" <he************ @CAPS.AND.DOTS. hotmail.com> wrote in message news:ea******** ********@TK2MSF TNGP11.phx.gbl. ..
> y dont you post you code so we can have a more detailed look on it... >
> --
> Regards,
>
> HD
>
> "Steve" <st***@nowhere. com> wrote in message
> news:OE******** ******@tk2msftn gp13.phx.gbl...
> > Thanks for the responses guys,
> >
> > That was however the first thing that I checked, I made sure

everything
> was
> > still wired up.
> >
> > thanks though!
> >
> >
> > "Ron Vecchi" <rv*****@xilehd vecchi.com> wrote in message
> > news:%2******** ********@TK2MSF TNGP12.phx.gbl. ..
> > > Check the InitilizeCompon ent() function. Most likly the Page_Load event
> > > wiring has been removed by the designer.
> > > Has happened to me a few times.
> > >
> > >
> > > "Steve" <st***@nowhere. com> wrote in message
> > > news:uN******** ******@TK2MSFTN GP09.phx.gbl...
> > > > OK, so I turned off validation. It still won't post. I've put a
> > > breakpoint
> > > > right in Page_Load and it doesn't fire
> > > >
> > > > here is the rendered HTML for the button
> > > > <input type="submit" name="Button_Fi nish" value="FINISH"
> > > id="Button_Fini sh"
> > > > />
> > > >
> > > >
> > > > looks fine to me?.....
> > > >
> > > > "Steve" <st***@nowhere. com> wrote in message
> > > > news:%2******** ********@TK2MSF TNGP09.phx.gbl. ..
> > > > > Hi-
> > > > >
> > > > > I had this nice little wizard application running. It was
comprised
> > of
> > > > > several Panel controls initially set w/ their visibility
off except
> > for
> > > > the
> > > > > first one, then as you progress through the page, a code-behind > method
> > > > would
> > > > > manage the correct panel's visibility, giving the illusion of > separate
> > > > > steps. Fine, great.
> > > > >
> > > > > All the panels has server button controls for "Next" and
"Previous"
> > > > > The last panel has a button control (server of course) that would
> call
> > a
> > > > > different Click event than the other buttons in the previous
panels.
> > > > >
> > > > > I did something, I don't know what but when I click the button > > > > "Finish"... .
> > > > > the event never fires, digging deeper I realized that

Page_Load()
> > isn't
> > > > even
> > > > > firing. So... what it does is make the window flash, then it all
> goes
> > > > > white. The page never posts.
> > > > >
> > > > > Here is the rendered HTML for the button:
> > > > > <input type="submit" name="Button_Fi nish" value="FINISH"
onclick="if
> > > > > (typeof(Page_Cl ientValidate) == 'function')

Page_ClientVali date();
"
> > > > > language="javas cript" id="Button_Fini sh" />
> > > > >
> > > > > I think it has something to do with the button being inside
a panel.
> > > > >
> > > > > Actually, I just found out why it's not working.... there is

no > > > > > Page_ClientVali date() function in the rendered HTML. I guess it
> > creates
> > > > it
> > > > > in the first panel that holds a button that Causes

Validation, then
> > > later
> > > > > when I hide that panel, there is no script rendered. This is > > > speculation
> > > > of
> > > > > course, but if this is the case.... I would think that this

would
be
> a
> > > > bug,
> > > > > wouldn't you.
> > > > >
> > > > > Thoughts? Suggestions??
> > > > >
> > > > > Anything would be cool,
> > > > >
> > > > > Thanks,
> > > > > Steve
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >
> >
> >
>
>



Nov 18 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

21
3204
by: Tony Marston | last post by:
If the use of the browser's BACK button is interfering with the operation of your web application then take a look at this article entitle "Back Button Blues" http://www.tonymarston.co.uk/php-mysql/backbuttonblues.html -- Tony Marston http://www.tonymarston.net
11
3093
by: Dom | last post by:
Hi, I wanted to use the Button Element to submit a form like this example: <form action="/test.exe" method="post"> <button id="ID_BUTTON_OK" name="_WEB_EVENT_HANDLER_" type="submit" value="ID_BUTTON_OK">Login</button> </form>
8
1579
by: Gernot Frisch | last post by:
Hi, I get these errors, but I'm totally lost. It's a large cpp file and I don't know where to search for the error, since it does not point to any of my code lines. Can someone suggest where to start? That's my output: d:\Programme\Microsoft Visual Studio .NET 2003\Vc7\include\functional(139) : error C2784: 'bool std::operator
2
2018
by: VK | last post by:
A while ago there was a discussion how to implement a select list that would call a function right upon new selection is being made w/o clicking any additional buttons: <http://groups-beta.google.com/group/comp.lang.javascript/browse_frm/thread/aa4a8da635e42592/ba2c264d6a9b3558?q=drag+group:comp.lang.javascript+author:VK&rnum=2&hl=en#ba2c264d6a9b3558> The main issue was to overcome IE's accessibility bug: if user scrolls the list using...
2
1515
by: James Glover | last post by:
I need help... I am trying to set the Viewstate of a var on an onclick event and let the page post back to get the new value. When i click the button, the first time though (on the post back) it reads empty string. On subsequent clicks it seems to be on off the actual value I have assigned to the ViewState variable. Some psudio code below:
0
1448
by: Dailan | last post by:
Hi, I create a tree view. Each node has link button associate with it, which includes add, edit, delete buttons. The way I did is for users who have very low capablity of using computer. Now I encoutered problem. At certain situation the event does not fire when I click my link button. I generate my tree and link button on fly, and associate event with button. Tree is in my top panel. Detail information of each node is in my bottom panel....
1
1503
by: Marcel Boscher | last post by:
Hey guys, i got a question that bothers me quite a while, been looking everywhere but found no answer My idea is to automate this procedure for better performance... Can anybody in here tell me if its possible to auto create a 4 digit randomly code 1st digit alpha 2nd -4th numeric that gets looked up in the db if its there new code is generated
13
1899
by: Alan | last post by:
Hi Have asked before elsewhere but think I will have to rephrase the question. Using MS Access, what's the best way of tackling dates if I want to list all say; birthdays/birthdates in a date field? Many thanks as I'm totally lost on this.
2
3485
by: Advo | last post by:
Basically, ive got information in a table for the layout purposes, as its text for a questionnaire What i Need, is for instance when the user click a radio button, that information can be hidden. I tried <div id="myarea" style="visibility:hidden"><STRONG><font color="#4475AA"Question 2:</font></STRONG></divetc
0
8392
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8912
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8819
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8597
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8669
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6222
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5692
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
2809
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2049
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.