473,387 Members | 1,585 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

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_Finish" value="FINISH" onclick="if
(typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
language="javascript" id="Button_Finish" />

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_ClientValidate() 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 1291
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_Finish" value="FINISH" id="Button_Finish"
/>
looks fine to me?.....

"Steve" <st***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if
(typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
language="javascript" id="Button_Finish" />

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_ClientValidate() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH" id="Button_Finish" />
looks fine to me?.....

"Steve" <st***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if
(typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
language="javascript" id="Button_Finish" />

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_ClientValidate() 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 InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH" id="Button_Finish" />
looks fine to me?.....

"Steve" <st***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if
(typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
language="javascript" id="Button_Finish" />

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_ClientValidate() 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*****@xilehdvecchi.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"

id="Button_Finish"
/>
looks fine to me?.....

"Steve" <st***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if
(typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
language="javascript" id="Button_Finish" />

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_ClientValidate() 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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"

id="Button_Finish"
/>
looks fine to me?.....

"Steve" <st***@nowhere.com> wrote in message
news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if
> (typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); "
> language="javascript" id="Button_Finish" />
>
> 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_ClientValidate() 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****************@TK2MSFTNGP11.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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"
id="Button_Finish"
> />
>
>
> looks fine to me?.....
>
> "Steve" <st***@nowhere.com> wrote in message
> news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH" onclick="if > > (typeof(Page_ClientValidate) == 'function') Page_ClientValidate(); " > > language="javascript" id="Button_Finish" />
> >
> > 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_ClientValidate() 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**************@TK2MSFTNGP10.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****************@TK2MSFTNGP11.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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
> Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"
> id="Button_Finish"
> > />
> >
> >
> > looks fine to me?.....
> >
> > "Steve" <st***@nowhere.com> wrote in message
> > news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH"

onclick="if > > > (typeof(Page_ClientValidate) == 'function')
Page_ClientValidate(); " > > > language="javascript" id="Button_Finish" />
> > >
> > > 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_ClientValidate() 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*****@xilehdvecchi.com> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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****************@TK2MSFTNGP11.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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
> news:%2****************@TK2MSFTNGP12.phx.gbl...
> > Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"
> > id="Button_Finish"
> > > />
> > >
> > >
> > > looks fine to me?.....
> > >
> > > "Steve" <st***@nowhere.com> wrote in message
> > > news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH"

onclick="if
> > > > (typeof(Page_ClientValidate) == 'function')

Page_ClientValidate();
"
> > > > language="javascript" id="Button_Finish" />
> > > >
> > > > 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_ClientValidate() 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 - maxRequestLength = "Number of KB" - my example is 30
mb.

<configuration>
<system.web>
<httpRuntime maxRequestLength="30720" />
</system.web>
</configuration>

"Steve" <st***@nowhere.com> wrote in message
news:u1*************@TK2MSFTNGP12.phx.gbl...
Yeah, I imagine it could be a common proeblem. Did you find a way to
increase the size allowed?
"Ron Vecchi" <rv*****@xilehdvecchi.com> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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****************@TK2MSFTNGP11.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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
> > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"
> > > id="Button_Finish"
> > > > />
> > > >
> > > >
> > > > looks fine to me?.....
> > > >
> > > > "Steve" <st***@nowhere.com> wrote in message
> > > > news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH"
onclick="if
> > > > > (typeof(Page_ClientValidate) == 'function')

Page_ClientValidate();
"
> > > > > language="javascript" id="Button_Finish" />
> > > > >
> > > > > 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_ClientValidate() 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
so easy.... :)
"Ron Vecchi" <rv*****@xilehdvecchi.com> wrote in message
news:u9**************@TK2MSFTNGP11.phx.gbl...
Yes, web.config - maxRequestLength = "Number of KB" - my example is 30
mb.

<configuration>
<system.web>
<httpRuntime maxRequestLength="30720" />
</system.web>
</configuration>

"Steve" <st***@nowhere.com> wrote in message
news:u1*************@TK2MSFTNGP12.phx.gbl...
Yeah, I imagine it could be a common proeblem. Did you find a way to
increase the size allowed?
"Ron Vecchi" <rv*****@xilehdvecchi.com> wrote in message
news:eF**************@TK2MSFTNGP09.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**************@TK2MSFTNGP10.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****************@TK2MSFTNGP11.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**************@tk2msftngp13.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*****@xilehdvecchi.com> wrote in message
> > > news:%2****************@TK2MSFTNGP12.phx.gbl...
> > > > Check the InitilizeComponent() 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**************@TK2MSFTNGP09.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_Finish" value="FINISH"
> > > > id="Button_Finish"
> > > > > />
> > > > >
> > > > >
> > > > > looks fine to me?.....
> > > > >
> > > > > "Steve" <st***@nowhere.com> wrote in message
> > > > > news:%2****************@TK2MSFTNGP09.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_Finish" value="FINISH"
> onclick="if
> > > > > > (typeof(Page_ClientValidate) == 'function')
Page_ClientValidate();
> "
> > > > > > language="javascript" id="Button_Finish" />
> > > > > >
> > > > > > 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_ClientValidate() 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 #11

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

Similar topics

21
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" ...
11
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"...
8
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...
2
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: ...
2
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...
0
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...
1
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...
13
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...
2
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
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...

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.