Response.write does not give values of variables

Response.write does not give values of variables

am 25.03.2005 17:41:04 von jack

If fPerformUpdate = True Then
Dim intCount
intCount = 0

Dim AuthorID
Dim FName, LName, Phone
Dim Address, City, State

For Each Item In Request.Form
If Left(item, 3) = "ID_" Then

AuthorID = Mid(Item, 4)
intCount = intCount + 1
End If
Response.Write AuthorId & "
"
Response.Write intCount & "
"
Next
End If

Re: Response.write does not give values of variables

am 04.04.2005 18:53:55 von Chris Hohmann

"Jack" wrote in message
news:78CFC970-F3B5-4BA1-82C9-137987BDAA0C@microsoft.com...
>
>
> If fPerformUpdate = True Then
> Dim intCount
> intCount = 0
>
> Dim AuthorID
> Dim FName, LName, Phone
> Dim Address, City, State
>
> For Each Item In Request.Form
> If Left(item, 3) = "ID_" Then
>
> AuthorID = Mid(Item, 4)
> intCount = intCount + 1
> End If
> Response.Write AuthorId & "
"
> Response.Write intCount & "
"
> Next
> End If

What's the value of the method attribute in the FORM tag? It should be POST.

Re: Response.write does not give values of variables

am 06.05.2005 13:35:29 von xl4-w

Try Request.QueryString i.s.o. Request.Form


"Chris Hohmann" wrote in message
news:e$O6kcTOFHA.1500@TK2MSFTNGP09.phx.gbl...
> "Jack" wrote in message
> news:78CFC970-F3B5-4BA1-82C9-137987BDAA0C@microsoft.com...
>>
>>
>> If fPerformUpdate = True Then
>> Dim intCount
>> intCount = 0
>>
>> Dim AuthorID
>> Dim FName, LName, Phone
>> Dim Address, City, State
>>
>> For Each Item In Request.Form
>> If Left(item, 3) = "ID_" Then
>>
>> AuthorID = Mid(Item, 4)
>> intCount = intCount + 1
>> End If
>> Response.Write AuthorId & "
"
>> Response.Write intCount & "
"
>> Next
>> End If
>
> What's the value of the method attribute in the FORM tag? It should be
> POST.
>