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 SkipVought 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: Mayoor
  • Order by date
  1. Mayoor

    A pop up window that submits to itself

    I have a form in a pop up window, but when I submit the form, it it opens up the results in a new IE window. Does anyone know how id go about submitting the form to the same pop up window?
  2. Mayoor

    Problems renaming to .asp mixing JS with ASP

    You absolute living legend! Thankyou!
  3. Mayoor

    Problems renaming to .asp mixing JS with ASP

    I have a piece of HTML code with Javascript tags which were working fine until i renamed the file .asp and added some asp code. The error I'm getting when loading up this page is Active Server Pages error 'ASP 0138' Nested Script Block Line 12 A script block cannot be nested inside another...
  4. Mayoor

    A-Z Stored Procedure

    Thats great thanks!
  5. Mayoor

    A-Z Stored Procedure

    Adam the language is Classic ASP. I think each letter link will be appended with the querystring something like this http://www.mysite.com/processingpage.asp?letter=a http://www.mysite.com/processingpage.asp?letter=b http://www.mysite.com/processingpage.asp?letter=c...
  6. Mayoor

    A-Z Stored Procedure

    Probably best if he passes the letter in as a parameter, any ideas how this is done?
  7. Mayoor

    A-Z Stored Procedure

    Hi does anyone know what the best way is to have a list of links a-z which then in turn list the values of a column in a DB. For instance say my column has 5 values (abba,bacon,croutons,deer,egg) I want some links like this. So if I was to click 'a' the web page would bring up "abba"...
  8. Mayoor

    Anyone know if DOS can communicate with an access database (mdb)

    through SQL or if not SQL, any other method ? Our EPOS system is DOS based and currently only allows us to maintain one price file (for over 150 branches). We're going to change this to allow us to have regional price files (11 of them). The EPOS system uses a Btrieve database which nobody...
  9. Mayoor

    Triggers associated with a table?

    I would like to know if there are any triggers associated with a table.... is there anyway of doing this please?
  10. Mayoor

    Creating a duplicate record with a new ID

    Guys I am now trying to complicate things by using parameters to update the new rows. So what will happen is that a new row is created with the duplicate fields but then there are certain fields I want updated in that new row afterwards with new values, I have tried doing CREATE PROCEDURE...
  11. Mayoor

    Creating a duplicate record with a new ID

    Nice one guys that did the trick!
  12. Mayoor

    Creating a duplicate record with a new ID

    Hi, I need to create a duplicate record of a record in my database and insert it with a new ID. The ID is an identity field so that will increment once the record is inserted anyway so I guess I just need the SQL that will do this. The only information I have is the ID of the record I want to...
  13. Mayoor

    ASP Database Libraries

    Sorry mate, I'm looking for something a bit more comprehensive than that to cater for a fair few scenarios. For instance: 1) A function which executes a stored proc and then returns the recordset as a 2 dimensional array 2) A function which executes a stored proc and then returns a recordset...
  14. Mayoor

    ASP Database Libraries

    I can't see any ASP DB functions on that page.....? He mentioned they would be available but I can't see any. Any ideas?
  15. Mayoor

    ASP Database Libraries

    Does anyone have a decent set of ASP functions which make it easier to interact with databases. So for instance I would call a function which would connect to a db, execute a stored procedure and return a recordset which I could then work with.
  16. Mayoor

    Unusual Duplicate Rows problem.

    Von.... Yes the UserID is a uniquely generated PK
  17. Mayoor

    Unusual Duplicate Rows problem.

    I have a web page which sometime allows duplicate entries of user submissions. Rather than restrict this at the database level, the client has asked for a report to list the User Id's(Identity field) of all duplicate records. Now here is the problem. I am using this SQL to grab my records...
  18. Mayoor

    Selecting all checkboxes between a DIV tag

    Im getting hammered by my boss for spending so much time on such a small piece of functionality, will put yours in place later!
  19. Mayoor

    Selecting all checkboxes between a DIV tag

    Billy - thanks for that will bear that in mind, would liked to have tried it your way in the end as it looks a lot slicker!
  20. Mayoor

    Selecting all checkboxes between a DIV tag

    here is the code that made it work in the end function CheckAll(TheName,TheType) { var idName; TheElem=document.forms[1].elements for(i=0;i<TheElem.length;i++) { idName = TheElem[i].id idNameFormatted = idName.charAt(2) if(idNameFormatted==3) { if(TheElem[i].checked...

Part and Inventory Search

Back
Top