Confused on an ASP message

G

Guest

Hi Everyone,

I have created a form (one I use alot in many intranets) where users have
clicked a hyperlink and it opens a results page with a another submission
form. On the form I have two fields that equal the vallue of two of the
results fields using the following ASP code

<%=FP_FieldHTML(fp_rs,"Description")%>
<%=FP_FieldHTML(fp_rs,"Sell")%>

when I run the form with these two fields in I get the following error
message in my browser

Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch: 'rs'
/taste_buds/_fpclass/fpdblib.inc, line 48


Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)

Page:
GET /taste_buds/order.asp

When I remove the fields the form runs, what am I missing considering I am
using the same method as I use elsewhere to capture users requirments and
submit tro another table.

Tia


Jonathan
 
S

Stefan B Rusynko

Are both fields in your DB defined in the DB as HTML fields?
- that is what you are calling with: <%=FP_FieldHTML

How are you passing the fields from 1 page to another?
--




| Hi Everyone,
|
| I have created a form (one I use alot in many intranets) where users have
| clicked a hyperlink and it opens a results page with a another submission
| form. On the form I have two fields that equal the vallue of two of the
| results fields using the following ASP code
|
| <%=FP_FieldHTML(fp_rs,"Description")%>
| <%=FP_FieldHTML(fp_rs,"Sell")%>
|
| when I run the form with these two fields in I get the following error
| message in my browser
|
| Error Type:
| Microsoft VBScript runtime (0x800A000D)
| Type mismatch: 'rs'
| /taste_buds/_fpclass/fpdblib.inc, line 48
|
|
| Browser Type:
| Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
|
| Page:
| GET /taste_buds/order.asp
|
| When I remove the fields the form runs, what am I missing considering I am
| using the same method as I use elsewhere to capture users requirments and
| submit tro another table.
|
| Tia
|
|
| Jonathan
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top