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 strongm 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: dashusa
  • Order by date
  1. dashusa

    Database parameters error

    Thanks i used recordSet.Open("select * from Details" +" where [User] ='" + user + "'",conn,1,3,adCmdText); And it works!! Thanks fr all you help
  2. dashusa

    Too few parameters??

    WHHHOOOOOOOOO THANKS VERY MUCH!!!! recordSet.Open("select * from Details" +" where [User] ='" + user + "'",conn,1,3,adCmdText); works So i guess it was the CmdText that did it What is that i have never used it before? Thanks again
  3. dashusa

    Database parameters error

    now i get Error Type: Microsoft JScript compilation (0x800A03EC) Expected ';' /Trod/Report.asp, line 14, column 15 recordSet.Open "select * from Details where [User] ='"& user& "' ",conn,adOpenKeyset,adLockOptimistic,adCmdText; --------------^
  4. dashusa

    Too few parameters??

    Thanks i tried recordSet.Open("select * from Details" +" where [User] =" + user + "",conn,1,3,adCmdText); Still not working
  5. dashusa

    Database parameters error

    Thanks for the reply But the still gives me the same error
  6. dashusa

    Too few parameters??

    Thanks for the quick reply it now says: Error Type: ADODB.Recordset (0x800A0BB9) Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. /Trod/Report.asp, line 14
  7. dashusa

    Database parameters error

    Hello i am trying to view a table But i want to only view the Data of a specific fieldset. I collect the name of the fieldset from a form but when i try to view the data it gives me an error saying "Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft...
  8. dashusa

    Too few parameters??

    Hello i am trying to view a table But i want to only view the Data of a specific fieldset. I collect the name of the fieldset from a form but when i try to view the data it gives me an error saying "Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80040E10) [Microsoft][ODBC Microsoft...
  9. dashusa

    Session Variable

    Hello, I am having an issue and i think it has to do with the session variable... The site Works fine on my local machine but when i load it on the server it loads the first couple pages but then gives me an error and if i wait for a while and hit refresh it works eventully... i am getting info...
  10. dashusa

    Adding Session Variable to Table

    sory wrong code this is the propper code <%@ language="JScript" %> <!-- #include file="adojavas.inc" --> <html> <head> <title>Nutritional answers</title> </head> <body> <% var connect = Server.CreateObject("ADODB.Connection"); var recordSet = Server.CreateObject("ADODB.RecordSet")...
  11. dashusa

    Adding Session Variable to Table

    Hello i collecting data from a user for two diffent tables in a data base and i need a unique ID so i can match the data lata... But when i try to add the Session Variable to the table it adds it over and over ... Any ideas on how to fix this thanks <%@ language="JScript" %> <!-- #include...
  12. dashusa

    Unsrecified Error

    Brilliant!! Stupid errors always get me Thanks
  13. dashusa

    Unsrecified Error

    <%@ LANGUAGE="JScript"%> <!-- #include file="adojavas.inc" --> <HTML> <HEAD> <TITLE>Admin View</TITLE> </HEAD> <% var conn = Server.CreateObject("ADODB.Connection"); var recordSet = Server.CreateObject("ADODB.RecordSet"); conn.Open("DSN=excuse"); recordSet.Open("select * from...
  14. dashusa

    Unsrecified Error

    Hello i am making a page that displays data from a database . I am using ASP and JScript i am getting a wierd error because sometimes i can display the data and when i hit 'refresh' it brings up the error page and says that it is an unspecified error.... Please help me resolve this issue Thank you D
  15. dashusa

    Unspesified Eerror

    Hello i am making a page that displays data from a database . I am using ASP and JScript i am getting a wierd error because sometimes i can display the data and when i hit 'refresh' it brings up the error page and says that it is an unspecified error.... Please help me resolve this issue Thank you D
  16. dashusa

    Layers property

    Hello In photoshop CS2 in the layers box(where it displays the different layers of the image you are working on..)on the left side of the box there are check boxes that indicate if a layer is linked to another layer if the layers are linked it dislays a little chain BUT i have somehow managed to...
  17. dashusa

    RSS Feeds

    Hello not sure if this is the right plsce to ask this but ... I need a RSS feed in my page and i am not sure how to do this I have down loaded a news aggregator and have added some sites to it and it displays the feed well and updates and all BUT i dont know how to get it onto my site .. If i...
  18. dashusa

    form Validation,redirect

    Ahhh i was using jscript??? im using mailto:da@shsh.com in the form action part... Is this the best way to do it?
  19. dashusa

    form Validation,redirect

    Hey Thanks for the fast reply.. I am validating the data by javascript <input type="submit" onSubmit="return checkData()" value="Send Request"/> so where do i put the redirect? i tried to put a response.redirect line at the bottom of the form validation code but it didnt work .. Thanks again...
  20. dashusa

    form Validation,redirect

    Hello I have a form that sends an email once it has been filled in.My question is how do i redirect the form page back to the home page onnce the user has clicked on the submit button. At the moment when the user hits the submit buttonnn it fires a form validation function... Thnks in Advance David

Part and Inventory Search

Back
Top