Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Beng79
  • Content: Threads
  • Order by date
  1. Beng79

    Type mismatch for "hidden" input type

    Hi all, I have used Querystring to display the list for editing: Modify Features.asp <% recstMod.Open "SELECT * from FuncFeat", connectMod Do While Not recstMod.EOF Response.Write(recstMod("FeatName")) & "<a href='ModifyFeatures_verify.asp?FeatID=" & recstMod("FeatID") & "'> Edit</a><br>"...
  2. Beng79

    What does input type=&quot;hidden&quot; mean?

    Hi all, <input type="hidden" name="FeatID" value="<% = rs("FeatID") %> as of the code above, what is the meaning of input type="hidden"? When is it normally used in? How is it different from input type="submit"? Thank you
  3. Beng79

    Align using QueryString

    Hi all, I have posted the problem in the ASP forum before, and was directed here. I have the following script using QueryString: <% Dim connectDel, recstDel Dim FeatureID Set connectDel = Server.CreateObject("ADODB.Connection") connectDel.Open("DRIVER={Microsoft Access...
  4. Beng79

    What does input type=&quot;hidden&quot; mean?

    Hi all, <input type="hidden" name="FeatID" value="<% = rs("FeatID") %> as of the code above, what is the meaning of input type="hidden"? When is it normally used in? How is it different from input type="submit"? Thank you
  5. Beng79

    Align using QueryString

    Hi all, how can I properly align a list shown using QueryString since now its all centre align and there is no spacing between the delete link and "FeatName"? Pls refer to thread333-1196584 for the script that I have posted earlier. Any help is appreciated.
  6. Beng79

    Querystring error

    Hi all, I am trying to run a delete script with a list shown and a delete link next to them. The list is shown and the FeatID is to be passed over to another script for request.querystring <% Dim connectDel, recstDel Dim FeatureID Set connectDel = Server.CreateObject("ADODB.Connection")...
  7. Beng79

    Check duplicate records for more than one data field before inserting

    Hi all, I was looking through the past thread and found thread333-1019874 regarding checking for duplicate records. I tried checking for duplicate record for one data field using the solutions given and it works. My question is if I have 2 or more data fields to check for duplicate records...
  8. Beng79

    Capture only text boxes with data to be inserted into database

    Hello All, I am inserting data into database from user inputs in the textboxes. Right now, my code below is only able to work if all the textboxes are being filled up with data. How can I alos insert the data if only some of the textboxes are being filled up? Any help is appreciated. Thank...
  9. Beng79

    Error message in deleting recods from database using with checkboxes

    Hi All, I am trying to run an ASP script in deleting recods from database using with checkboxes and the following error message is seen: ----------------------------------------------------------- Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E14) [Microsoft][ODBC Microsoft...
  10. Beng79

    What is Option Explicit ?

    Dear All, Just wanted to know what is <% Option Explicit %> meant for in a ASP script?
  11. Beng79

    How to check for duplication of records when inserting form contents

    Hello, I have a ASP script for insertion of form contents into the database. This is the link to the script that I have posted before in the forum -> http://www.tek-tips.com/viewthread.cfm?qid=1190366&page=1 Now I need to vadilate whether the data that users have entered have already exist in...
  12. Beng79

    Any sample scripts on updating or deletion

    Hi all, I have a script that let users perform a search on the data entered and then display data in a table from the database records. Is there a sample script which I can have a submit button for the individual rows to either update or delete records from the database?
  13. Beng79

    Adding multiple records into database

    Hi All, I have the following script: <% Dim connectAdd Dim recstAdd Dim SQL Dim strProjID1, strProjID2, strProjID3, strProjID4, strProjID5 Dim strFeature1, strFeature2, strFeature3, strFeature4, strFeature5 %> <% Set connectAdd = Server.CreateObject("ADODB.Connection")...
  14. Beng79

    Datatype &quot;AutoNumber&quot; in different tables in one database

    Good day to all, I have a number tables in a database and primary keys are needed for the tables. If I assign Datatype "AutoNumber" for the primary keys for each table, will they be unique? The primary keys are also link up as foreign keys for other tables. I have posted this question before...
  15. Beng79

    Generate primary key in database from adding new records

    Good day to all, After users enter data into textboxes and the data are captured into the database as new records in a table, is there any way to auto generate a primary key in the database from ASP scripts? Note: Primary key is not entered by users but have to be auto generated. Must the...
  16. Beng79

    Any sample ASP script for adding new records into database?

    Good day to all, My asp script requires users to enter data in textboxes and capture them into the database as new records. Does anyone know of any sample ASP scripts or tutorials? Thanks
  17. Beng79

    Inner join works in Access database but not in ASp

    Good day to all, I have write a inner query in Access database and it is able to produce results. I have 2 tables, Proj and Functional Features. The query is: SELECT Proj.ProjID, Proj.ProjName, [Functional Feature].FeatID FROM Proj INNER JOIN [Functional Feature] ON Proj.ProjID = [Functional...
  18. Beng79

    Data from database unable to display when perform searching

    Good day to all, I have try running the database search asp script below: http://www.asp101.com/samples/db_search.asp by amending the sql statements in the script to run the database that I have created. The problem is that the script runs but no data is displayed that means only the column...
  19. Beng79

    ASP, MS Access Database with frontpage

    I am currently creating a website with MS Access database to store the data. Anyone can help in the following? 1) How to link MS Access database with frontpage? 2) How can I retrieve the data from the database to be displayed? 3) How can I capture the data from the user input to be stored in...

Part and Inventory Search

Back
Top