Disabled Controls are not submitted asp.net 2.0
am 14.04.2008 15:12:34 von Meelis Lilbok
Hi
i have following problem
1) I add checkbox controls dynamically to webpage
2) user has time limit to check those boxes
3) if time is over checkboxes are disabled and Submit button appears
4) User presse submit button - problem disabled controls are not submitted!
Im using Page.Form.SubmitDisabledControls = true and form has also
SubmitDisabledControls=True
Any suggestions?
Meelis
RE: Disabled Controls are not submitted asp.net 2.0
am 14.04.2008 17:06:00 von brucebarker
this is a feature of the browser. no disabled fields are posted back. you can
have client script copy the values to hidden fields that do postback.
-- bruce (sqlwork.com)
"Meels Lilbok" wrote:
> Hi
>
> i have following problem
>
> 1) I add checkbox controls dynamically to webpage
>
> 2) user has time limit to check those boxes
>
> 3) if time is over checkboxes are disabled and Submit button appears
>
> 4) User presse submit button - problem disabled controls are not submitted!
>
>
> Im using Page.Form.SubmitDisabledControls = true and form has also
> SubmitDisabledControls=True
>
>
> Any suggestions?
>
>
> Meelis
>
>
>
Re: Disabled Controls are not submitted asp.net 2.0
am 14.04.2008 17:29:45 von Patrice
I would have a look at how it works client side. Actually I didn't even know
it was possible as usually a browser doesn't submit disabled fields by
design so there is likely a workaround (such as perhaps creating hidden
fields for those values ?).
Are you sure you create those controls at the approprioate step including
recreating them when appropriate ? My first thought would be that the way
those controls are created defeats the workaround provided by ASP.NET. I'll
have to give this a closer look as I didn't even noticed ASP.NET included a
workaround for this...
--
Patrice
"Meels Lilbok" a écrit dans le message de news:
3F84ACA5-E689-4F5A-8ECA-8EB4652A35F4@microsoft.com...
> Hi
>
> i have following problem
>
> 1) I add checkbox controls dynamically to webpage
>
> 2) user has time limit to check those boxes
>
> 3) if time is over checkboxes are disabled and Submit button appears
>
> 4) User presse submit button - problem disabled controls are not
> submitted!
>
>
> Im using Page.Form.SubmitDisabledControls = true and form has also
> SubmitDisabledControls=True
>
>
> Any suggestions?
>
>
> Meelis
>
>
>