I'm working on a quick wrapper so that I can connect to a database, run a quick query, get the needed info and pass it on to the next page that needs it. I've been programming for a long time but not with ASP/VBscript and think it's just something stupid that I've overlooked. Code:
I am getting the error 3704 "Operation is not allowed when the object is closed.Operation is not allowed when the object is closed." The problem is when no record is returned from the stored procedure. If there is a record, I do not get this error. Here is the portion of the code giving me problems.
rs.open strSql, strConnect if rs.eof = true or rs.bof = true then bEof = true end if
The line in red is what gives me the error. If I take out that section, I do not receive an error. Any suggestions? I can easily get around this by putting in an on error resume next, but I'm trying to get this to work without errors first.
So I have this database working JUST fine for a week, then I add another table to it and then this is where things starting getting crazy. Here is my db conn code:
yes i did close the connection, infact ultradev did this for me. This works before, I mean in other files and I am using the same format to build new pages.
In my page I run one sp to retrieve client details, loop through that and use another to retrieve details relating to each client. The first sp returns records correctly but i get the message "Operation is not allowed when the object is closed" .
when i try to use the second one. I have checked permissions and connections. I have printed out the variables i am passing as parameters and have tried running the sp from sql and it works fine.
I'm getting the error "operation is not allowed when the object is closed" on the following line:
<% If Not rsAlloAmts.EOF Or Not rsAlloAmts.BOF Then %>
I haven't dealt we this particular type of situation and not sure how I can bind the necessary values to the page based on what is passed in to the procedure. I'm not sure how to handle this type of logic on the page?
I have a problem with my programm and get the error above. In the file I've commented the relevant lines with **** and normaly the SQL-statement are in one row but there is a better overview when it looks like this.
I am fairly new to ASP from PHP for a few months now, and I am writing an application to do some basic reporting. On the development server this page worked fine, but when it was moved the tot production server it now gives me this error:
Code: Microsoft OLE DB Provider for ODBC Drivers error '80040e37'
[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'IDLearningAdmin.ems_log'.
I just purchased a domain package from gate.com and am setting up my SQL database connection on there server.
I am able to connect to the database fine, however when I am creating a recordset it shows my main menu table (and other tables) like this.
truthhub@truthhub.com.mainMenu
(the system "default" tables have "dbo" as a prefix)
It doesn't show any columns in that table and when I test the connection from there it gives me an Invalid Object Name Error.
On SQL Server it shows "truthhub@truthhub.com" is the owner of the table...so I am kinda confused
If I go to the advanced tab and delete the truthhub@truthhub.com and just leave mainMenu, then I can test and see my results.. however this will be a very inefficient way to start the work on my new site.
Has anyone run accross this problem before, or does anyone know how to make Dreamweaver cut the truthhub@truthhub.com off of of my tables? ...
I'm trying to usse a dictionary object in my ASP page and teh following error appears. ---------------------------------- Error Type: Active Server Pages, ASP 0134 (0x80004005) The object has an invalid ProgID of 'IISSample.LookupTable'. /hppdemo/global.asa, line 1 --------------------------------------
and my Global.asa has this one line of text.... ---------------------------------------- <object id="NoiseWords" progid="IISSample.LookupTable" runat="Server" scope="Application"></object> ----------------------------------------
Let me start by saying I'm fairly new to Asp coding. That said...
My ISP only uses AspSmartMail. I've created an online form that uses fill out, which is then e-mailed to the collector of the information and CC-ed to the person who submitted the information.
The error I'm receiving is this: aspSmartMail.SendMail : Error 28 error '8004001a' 504 Invalid Username or Password
In my script, I've Dimensioned several items, as you'll see below, passing the authenticating username/password to the smtp server, but it's not working. I tried not passing the information by entering in the actual info without it being passed by the diminsioned items. This didn't work either. I of course verified that the username/password I'm usine is correct.
Can someone plase tell me why I can't authenicate? I would really appreciate any help that might be out there.
Relavant Asp code below: ----------------------------------------- Dim smtpserver,youremail,yourpassword,yourusername,rem oteemail
I am altering an existing asp page,just by adding a new check box, I am going through the code making sure I cover every aspect of the change (there are many check boxes) and situation is exactly the same.'
When I load the page this is the error I get and I don't know why is this appearing,why wouldn't it like a new column, it has been added in the table on the server. This occurs in my select statement.
Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Invoicing'.
/updatedoc.asp, line 15 Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp.
This is my code where the error points too: Code:
Set ObjReference = Server.CreateObject("PostTools.GetPostInfo")
I am a newbie with these types of errors so can anybody give any suggestions as to what it means?
i am making a site using asp. in this i am using mssql server2k as backend. i ve created a dsn. i want use global.asa file for creating connection object so that i don't ve to create con object in every .asp page. for that i ve write following code
<script language="vbscript" runat="server"> sub Application_onStart()
set con=server.createobject("adodb.connection") con.open "dsn=pc;uid=sa;pwd=;database=dbname"
end sub sub Application_onEnd() set con=nothing
end sub sub Session_onStart()
end sub sub Session_onEnd()
end sub </script>
now anyone tell me how to use that connection object in any asp file for fetching the recordset.
Sub Session_OnEnd Dim Conn Set Conn = Server.CreateObject("ADODB.Connection") Conn.ConnectionString = Application("Connection_String") Conn.Open 'here is the error .... End Sub
A Conn object is created the same way in Session_OnStart and is used throughout the application, and Application("Connection_String") still exists here (I tested). So I suppose the error is caused by the fact that we are in Session_OnEnd.
i am testing the sending email when u submit a form .. but i am getting an error:
<% Set myMail=CreateObject("CDO.Message") myMail.Subject="Email Send" myMail.From="quince_103@hotmail.com" myMail.To="qb_103@hotmail.com" myMail.TextBody="This is a message." myMail.Send response.redirect("index1.asp") %>
the error is:
Error Type: CDO.Message.1 (0x80040220) The "SendUsing" configuration value is invalid. /middle/email.asp, line 7
I'm getting this error trying to INSERT information into a database. Its saying that the Invalid column name is TicketNum. I have looked at the field name for the database and it is the same.
I have a page (Page 1) that allows users to select several search criteria. These criteria are then passed via the URL to another page (Page 2) that runs a query and displays the result. I keep getting an 'invalid number' error and I need help fixing it.
To save space I'm only including the query. I created and set up a connection object and a recordset object (rs).
Users may select multiple Project_ID's from Page 1, they are passed in the URL as Project_ID, Project_ID, etc. Code:
when I tried to execute my ASP code I'm getting the follwoing error
"(0x800A0408) Invalid character /aspprgs/show_login.asp, line 24, column 34 Set connobj = Server.CreateObject(“ADODB.Connection”)" --------------------------------^
the following is the code.I creatd a DSN and to access from ASP I set it as system DSN...
I am facing a problem with MAPI.SESSION for server.createobject in a ASP page. I am getting a message as "Invalid class string". I checked up the registry and found no entry for the same. So I used regsvr32 and registered the cdonts.dll file. But even then there is no entry in the registry and I am getting the same error in the asp script.
where the querysting is something like "fname=this, that/this, that.xml".
I'm sure it's the comma, because if I remove it and rename the file and folder, everything works. I believe that a comma is a valid character in a folder or filename, so why does MapPath barf on it? Is there any way around this still using MapPath? Can someone point me to a source with a list of the valid characters the MapPath accepts?
The connection object is stored in a application object in a database.asp file which is included on all the pages. This is something that I didn't code but I am incharge of fixing it because we are having alot of problems with the IIS.
How do I remove the connection object from the application object? I am a bit confused, what if i just use a variable to set the connection and then still include the file on all the pages. Would that work? Code:
Rather than opening and closing a new connection to the database on every page, I have placed that connection into an Application variable. This has worked fine so far.
My issue is that I have a logoff page where it closes that connection.But this means that users who are on the application will not be able to access that connection.The obvious answer is that I don't close the database connection.But my problem is, I would like to eventually close that database connection.
How can I determine if an application variable (not session variable) exists?How can I determine that there are not any users on the application?
I am trying to utilise xmlhttp for my website. I have been told that it is on the server (don't have access to the actual server so far as installing components etc.).
But I keep getting an 'Invalid Class String' error.
Is there a way to list out the valid class strings or list the components on a server from a normal asp page (so I can see what is/isn't available).
What are the different alternatives to the line...
[VBS] Set xml = Server.CreateObject("Microsoft.XMLHTTP")[/VBS] that may be substituted depending on the version of it? Or is there another alternative to xmlhttp that will provide me with the source of a page on another server that may already be installed...?
I want to Send mail using the following code but an error appear like this:
---------------------- Error Type: (0x8004020F) The event class for this subscription is in an invalid partition /tests/a.asp, line 27 ---------------------
I am trying to create a comments form with html and have it sent to my email address from the website via ASP. I keep getting an error message that says:
Server object error 'ASP 0177 : 800401f3' Server.CreateObject Failed /myapp/email.asp, line 3 Invalid class string
I've examined my line 3, and I cannot see the problem. Could anyone tell me whats wrong with the codes, or must I have a separate database to house the contents of my forms as well?
I am using WinXP Pro and IIS. For some reason, I can not get any ASP pages to work. All I get is this error below. I have even removed all sites on the server, but I still get the error. Html pages work just fine. All permissions are in order. How do I fix this? When I view same pages on Win2000 machine, they work fine
Active Server Pages error 'ASP 0134' Invalid ProgID attribute //global.asa, line 1 The object has an invalid ProgID of 'MSWC.MyInfo'.
I have been modifying a forum I found on the web for a web site I am developing. Everythiing has been going great (www.tastytuscany.com/forum) until I yesterday when I hit a brick wall. There seesm to be an issue with the email functionality. The author wrote a "send_email" function that I just can't figure out why I keep getting this error:
Microsoft VBScript runtime error '800a0005'
Invalid procedure call or argument
/forum/admin/functions/functions_send_mail.asp, line 158
In the script for the email function, here is an excerpt of the code (he uses a select statement for various email types...) and a call to the function from a page. Might I just modify that include file with my own CDONT script? I use cdonts on other pages in the site just fine? BUT, I would really like to get this to work.. Code: