On 9/21/05, Kent Johnson <[EMAIL PROTECTED]> wrote:
> Adam Cripps wrote:
> > On 9/21/05, Kent Johnson <[EMAIL PROTECTED]> wrote:
> >
> >>Adam Cripps wrote:
> >>
> >>>I'm trying to get a cgi.FieldStorage into an int.
> >>>
> >>>The input is in numeric form, as it is provided by an
> >>>drop-down bo
Adam Cripps wrote:
> On 9/21/05, Kent Johnson <[EMAIL PROTECTED]> wrote:
>
>>Adam Cripps wrote:
>>
>>>I'm trying to get a cgi.FieldStorage into an int.
>>>
>>>The input is in numeric form, as it is provided by an
>>>drop-down box. However, when I try
>>>
>>>timestable = int(form.getvalue('timesta
On 9/21/05, Kent Johnson <[EMAIL PROTECTED]> wrote:
> Adam Cripps wrote:
> > I'm trying to get a cgi.FieldStorage into an int.
> >
> > The input is in numeric form, as it is provided by an
> > drop-down box. However, when I try
> >
> > timestable = int(form.getvalue('timestable'))
> >
> > I get an
Adam Cripps wrote:
> I'm trying to get a cgi.FieldStorage into an int.
>
> The input is in numeric form, as it is provided by an
> drop-down box. However, when I try
>
> timestable = int(form.getvalue('timestable'))
>
> I get an error that the type is None - I guess this is because
> FieldStora
I'm trying to get a cgi.FieldStorage into an int.
The input is in numeric form, as it is provided by an
drop-down box. However, when I try
timestable = int(form.getvalue('timestable'))
I get an error that the type is None - I guess this is because
FieldStorage is a class. However, I've trawled