navigation
a webmaster learning community
     Home    Register     Search      Help      Login    
Sponsors

Shopping Cart Software
Ecommerce software integrated into Frontpage, Dreamweaver and Golive templates. No monthly fees and available in ASP and PHP versions.

Website Templates
We also have a wide selection of Dreamweaver, Expression Web and Frontpage templates as well as webmaster tools and CSS layouts.

Frontpage website templates
Creative Website Templates for FrontPage, Dreamweaver, Flash, SwishMax

Search Forums
 

Advanced search
Recent Posts

 Todays Posts
 Most Active posts
 Posts since last visit
 My Recent Posts
 Mark posts read

Microsoft MVP

 

More Problems, ugh...

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
Printable Version 

All Forums >> Web Development >> ASP and Database >> More Problems, ugh...
Page: [1]
 
xterradane

 

Posts: 143
From: Mobile, AL USA
Status: offline

 
More Problems, ugh... - 12/15/2001 16:21:24   
I am still having problems, this is my error message: Microsoft JET Database Engine error '80040e10'

No value given for one or more required parameters.

/webpub/JobSearchResultsAdd.asp, line 38

This is my script, error is on the open line.

<%
Dim strState, strJobType
strState = Request("State")
strJobType = Request("JobType")

Dim rsJob
Set rsJob = Server.CreateObject("ADODB.Recordset")

If Request("JobType") = "Any" AND Request("State") = "Any" Then
strSQL="SELECT * FROM Job WHERE DateExpries>= Date() ORDER BY DatePosted DESC;"
End If

If Request("JobType") <> "Any" AND Request("State") = "Any" Then
strSQL="SELECT * FROM Job WHERE DateExpries>= Date() AND JobType='" & strJobType & "' ORDER BY DatePosted DESC;"
End If

If Request("JobType") = "Any" AND Request("State") <> "Any" Then
strSQL="SELECT * FROM Job WHERE DateExpries>= Date() AND State='" & strState & "' ORDER BY DatePosted DESC;"
End If

If Request("JobType") <> "Any" AND Request("State") <> "Any" Then
strSQL="SELECT * FROM Job WHERE DateExpries>= Date() AND JobType='" & strJobType & "' AND State='" & strState & "' ORDER BY DatePosted DESC;"
End If

rsJob.Open strSQL, objConn
Thanks,
Gail

 
ginnie

 

Posts: 527
From: St. Louis MO USA
Status: offline

 
RE: More Problems, ugh... - 12/15/2001 16:47:36   
In your SQL statements, you have "DateExpries" instead of "DateExpires" (typo error)

(in reply to xterradane)
xterradane

 

Posts: 143
From: Mobile, AL USA
Status: offline

 
RE: More Problems, ugh... - 12/16/2001 10:42:22   
Thanks, sometimes your eyes go cross looking at this stuff for long periods of time and it takes another to point out such a simple mistake!

 

(in reply to xterradane)
Page:   [1]

All Forums >> Web Development >> ASP and Database >> More Problems, ugh...
Page: [1]
Jump to: 1





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts