If Request.QueryString("mode") = "go" then
objRec.Open "Gigs", objConn,2,2,&H0002
objRec.Filter = "id=1"
objRec("venuedate") = ChkString(Request.Form("gigs"))
objRec.Update
Response.Write "The changes have now been saved"
Response.Write objRec("venuedate")
Else
'response.Write("splip")
strSQL = "SELECT * FROM Gigs Where id=1"
objRec.Open strSQL,objConn,0,1
what i would like to know is how this part works specifically the ,#,#,####:
objRec.Open "Gigs", objConn,2,2,&H0002
objRec.Open strSQL,objConn,0,1
Can we define events in a class when coding using VBScript in ASP? I still have the second question, even if the answer is positive. That is whether the two standard events of a calss module in VB, "Class_Initialize" and "Class_Terminate", is still availabe in VBScript? If not, then how to initialize an instance of a class automatically when it is created?
I am now going a step further in asp trying to understand how asp browser upload scripts work. Looking at a couple of browser upload script, I unfortunatly constated that I really don't know nothing about "bytes". This is an obscure area to me. I consider bytes only a measure unit.
What are exactly bytes? If there is no way for visualizing them, then what can they be compared to? numeric values? any good article about this?
I am getting the error "No value given for one or more required parameters" with this basic script.
I have checked the fields are spelt correctly and have capitals in the right place. I have also checked with response.write to see the results it produces and it all looks correct. Code:
when trying to connect remote desktop web connection...the "non-web" connection works perfectly (i.e. just launching mstsc and connection directly to an IP).I believe that the problem might exist in my connect.asp file
We have a desgined a web application with ASP, VB, Oracle, Javascript. Ours is a three tier applicaton with the component proxy exported to IIS on the web server.
We have the error 'object required' throwed inconsistently by ASP. After awhile, if we refresh the page the page is working fine. We have been having performance problems like Failureenlisting Resource Manger and MSDTC errros also.
I have been working on requiredvalidation controls..I'd like to know how could I create a validation on a group of controls? for example to validate phone, on the form it may looks like below (brackets are the textbox fields) ([ ]) [ ]-[ ]
how could I validate all three fields with one message error to display in the validation summary?or is there another way to do? btw, am I able to create a textbox or some sort of control that is actually the combination of the three boxes?
"Microsoft JET Database Engine (0x80040E10) No value given for one or more required parameters." error message in the first line.
Rs.Open "SELECT * From Unvanlar WHERE Unvan = " & kayit8, Con, 3,3 If rs.EOF Then Con.Execute ("INSERT INTO Unvanlar (Unvan) VALUES ('"&kayit8&"')"),,129 End If Rs.Close
The variable is string and the field in access table is text. I'm sure that field names in the code and table are correct as well. What can I do to solve that?
I just uploaded a script I downloaded and everything works fine except when I load any page in that directory it asks me to login. I usually use PHP on a different server so I'm used to using .htaccess files to elicit the same effect. How would I go about turning this off in ASP? If i were on a linux server I'd just alter this file and remove the following lines, but I'm not sure how to do this with ASP. Example .htaccess
Well after sorting my DB Counter problem (see previous thread) (I stumbled accross another. Well, the counter was just on the underconstruction page but I have put it into my common.asp file (for when the acctual site opens, the asp file included at the top of every page) and I get this error:
Microsoft VBScript runtime error '800a01a8' Object required: ' ' /dannyscorner/includes/common.asp, line 60
I have seen this many many times before HeHe ^_^ But this time, it says line 60 but line 60 is used on the underconstruction page and the counter works fine
I am writing an asp script that includes some WMI calls to get PC information and display it on the page. I can query other machines in the domain just fine, but when I try to query the machine that is running the website (Windows 2003 IIS) I get the error Object Required Error 424.
I have tried to this on a Windows XP Pro machine running IIS and I get the same error. Why woud I not be able to query the local machine running IIS?
I have been asked to include a fee calculator in a site, which would enable a browser to calcualte fees on the sale/purchase of a property. I have searched Google for ages and cannot find such code. something similar that could be adapted(not too technical) or a basic script to do it that I could buy.
I am currently operating a hosted ASP site with SQL Server installed. I need a very basic forum (ideally for free) and any suggestions would be much welcomed. I note that Snitz offer an extremely comprehensive ASP forum which is free but from experience I know that learning to use this properly is quite a steep learning curve and right now I do not have the time. What I am looking for is a forum which bears the same relationship to Snitz as Notepad does to Microsoft Word.
The line points to where the query takes place. I've read that it could be b'cos a variable that's not defined, but this is not the case, not that i know. Here's the line:
strsqlttype is the variable wish contains the select, and it is initialized as empty. After running the query on the database i found some empty/null records, b'cos of that i validate the fields i need... prior that it stoped right after the loop writes the first line, after validation was placed it stoped on the second record.
This crazy query works on three other sites, which are all exactly the same and even use the exact same code and data format, but it won't work on a new one. The craziest part is that when I copy the query to Access and execute it in SQL view, I don't get an error; it works perfectly. Code:
Does anyone know of a good free forum for ASP? For PHP there is www.phpbb.com which is very professional. Is there a similarly professional looking ASP forum anywhere? (Preferably freeware).
I'm trying to write a Generic Form to Database Parser, basically this script should take the values of Form fields and write them into a Database Table with correspondingly named fields.
EG: The value contained in <input type="text" name="Email" > would be written to the database field "Email"
I ran into difficulty when I tried to differntiate between Numeric and Non-Numeric Data as non-numeric data values must appear in quotes in a SQL Statment whereas Numeric Data should not be placed in Quotes. So I'm testing my form values to see if they are numeric, so I can build my SQL Statement Accordingly. Code: