I'm trying to only show 10 records at a time. I have the first 10 records showing. The problem is that when I click the Next button I get an error message: ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. Also different people are going to search for different things so there will always be a different amount of records returned each time. I can't figure this out. My code is:
I'm having a bug here that is driving me nuts I read more than 10 tutorials so far about paging records using ASP and Access, and all of them are basically using the same way I am, but no one seens to have this bug: When I page my records, instead of listing ordered, the records shown on each page seens to be sort of compressed in a resumed search. Humm, let me try give an example: The DB has 40 rows and Im using rs.cursorlocation=3, rs.pagesize=10, rs.cachesize=10 I do a search ordered by the field called 'name'. Instead of showin on first page A-G, second page G-M, etc.., the list is showin A-Z on each page skiping the records. like "resuming" the seach in each page. And the other weird thing is that as I go from page to page the number of records start changin from 10, to 8 to 5 Does anyone ever had a bug like that?
I have a page that returns a query onto a page 30 at a time. At the bottom are the navigation controls, back, next, etc. Printing it becomes a problem. I don't want the controls printed with the rest of the information.
Is there a way to keep them from printing or can they be moved to a seperate page in the frameset?Can the results be sent to the printer in a formatted manner without being displayed?
I'll admit to being a bit of a newbie at all this ASP stuff so you'll have to excuse me.
I've been given some work to do on a search results page that was designed by someone else. I have been asked to incorporate some basic paging (Next 10 etc) into someone elses work, but don't really know where to start.
Would it be really cheeky if I posted the page code up on here in hope that some helpful sole could give me a few pointers as to what will need to be added in order to get it working.I thought I'd better 'test the water' with you guys first so to speak.
i have do some research on the ajax paging,but i cant get any solutions. i wan to query out 5records each time when the Next button is clicked or Preview button is clicked without refresh the page with the querystirng above such as xxx&page=1,xxx&page=2. i get some reference of ajax pagingnation, but tis code is call from the external files. how can i modified the script above to call out my recordset from database? below is the reference from dynamicdrive.com.
i wan to do the record pagingnation like dynamicdrive without refresh the page.and my records are called from the database. i just wan the NExt and Previous button without the numbers
I was at http://aspfaq.com/show.asp?id=2120,read all techniques.I choose the fasted one -it is the last "SP ROW COUNT". SP looks like:
CREATE PROCEDURE SampleCDs_Paging_Rowcount @pagenum INT = 1, @perpage INT = 50 AS
I want dynamically change SQL select (because I want filter output by something - name, author, year, order and so on).So I thought, it could be nice idea to call stored procedure with added 3 SQL SELECTS as arguments.So it should look like:
CREATE PROCEDURE SampleCDs_Paging_Rowcount -- change name @pagenum INT = 1, @perpage INT = 50, @SQL1 nvarchar(1000), @SQL2 nvarchar(1000), @SQL3 nvarchar(1000) AS
I am trying to provide a paged listing of Access DB table data using ADO. I have a problem using the AbsolutePage method. I am using the following:
[VBS] objRs.Open strSQL, objDbConn, adOpenStatic, adLockReadOnly, adCmdText objRs.PageSize = 5 objRs.CacheSize = 5 objRs.MoveFirst objRs.AbsolutePage = 24 Response.Write(objRs.AbsolutePage) Do While objRs.AbsolutePage = 24 And Not objPubRs.EOF Response.Write(objRs("data")) objRs.MoveNext Loop [/VBS]
The line "Response.Write(objRs.AbsolutePage)" writes "-1" and the loop does not write any data.
If I remove the "objRs.AbsolutePage = 24 And" from the loop test it will write recordset data starting with the proper page position but continues to the end of the recordset (including all following pages).
With objRs.AbsolutePage reporting -1 I cannot test out of the loop based on the recordset page number.
I am displaying my records horiztonally and i have set a limit on the records to be shown on my page the limit is 5 records per page and i have a category which has 8 records.
the code was working fine with paging when the records were displayed vertically but when i added the code so that it displays horizontally its giving this error Code:
The first results page works fine until I choose another page (PAGE 2) and I get the error: ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another
The weirdest part is when I put the sql statement out side of the if statement it WORKS!. However, in this context I cant hardcode my sql statement Code:
My question is how would you code in .ASP so my recordset thats in a table to have a recorset paging that is similar to the one that this site uses or any professional sites? Code:
I'm trying to set up a "simple" page to display six items at a time in a 2 col x 3 row grid I've succeeded in doing this and displaying all the records but am struggling to only display six at a time I've searched on recordset paging and no one seems to cover this sort of problem Anyone any ideas? Code:
I have a database with several hundered images and I need to retreive them using recordset paging, otherwise the page will be to long. So far so good.
I added a search function which will return only the desired results. The first page returns the search results (30 per page) and I also have a line of code that tells me how many records was found, let's say 70. This should give me 3 pages of results.
But when clicking on the next link I don't get the next set of results, instead ALL the images from the database is returned on the following pages, starting from image 31 in the DB. Not just the rest of the originally search results. Code:
I have successfully paged through a recordset on my page using the .recordCount, etc. methods, the only thing is I have 2 independent recordsets looping on the page, which when there was not paging involved this worked fine, however now I need to span the results of BOTH of these across pages, I just cannot seem to figure out how!
I have one set of records paging fine, but the other either messes the page up, or shows on the first page of results and no more of the other recordset, etc.... so yeah that is basically the problem I am hitting, so I was just wondering is there any examples or ways you could tell me to do this??
I am rebuilding a site for an internet radio station. One part of the site shows a "Now Playing" element with a simple text screen that a backend ASP script has retreived from a server and parsed. However this little text feild updates every 3-4 minutes when songs end. However the only current way I know to update the string is to automatically reload the page every 3-4 minutes.
This is a real annoyance for both myself and all of the users. Is there anyway with ASP or another language to only update the text string every 3-4 minutes without having to reload the entire screen.
what the easiest way is to get the number of records in a recordset, or the number of records returned by my query. I can't get this rs.recordcount thing to work. it just returns -1 all the time. I read on asp101 that it only works when you're using the right cursor type but I tried using the cursor type they said to use and it still doesn't work. I also did the test they gave to check if your record set will allow recordcount()
Code:
If rs.Supports(adBookmark) Or rs.Supports(adApproxPosition) Then Response.write "will work" End If and that works...
So can anyone help me plz!
ps. whithout looping through the records and counting them if possible plz! there must be a shorter way than that.
I have a query that is supposed to return only 1 record, however I recently found that because of an error in the database it can return more than 1. So what I need to do is capture if it is more than 1 record and alert the user to contact the database administrator. How can I get the count of records returned by a recordset? Is there no way besides looping through with a counter variable?
If I want to display the last X number of records in a recordset, how would I do it? Say I have ten records and I want to display them showing the smallest amount first: Code:
i need to put the records i'm getting from my query into a string, can someone tell me how to do this.
i've tried GetString, but thats not what i'm looking for, my query pulls up ID's and i need to put these into a string so i can split them up to be used in another query.
What I want to do is have a recordset with all records in and display a list by title with a tick box next to them, then goto a new page which the recordset is all the records that the user selected on the previous page.
I'm having trouble with the recordset object. I'm trying to use the "RecordCount" aspect of the recordset but it keeps diplaying "-1". How do I get it to show the total count of records?
The problem concerns 2 tables, cart_products and cart_shoppingcart.
Cart_products contains all the product data (eg, prices, product's key name, etc), but most importantly, it contains the quantity of stock (prod_quantity) for each item.
cart_shoppingcart contains all of the user's items in their shoppingcart, including those that are part of an (customer) order; these have the order_number to differentiate from those that aren't in any order (their Order_number is 'no_order', the others have the order number).
Now, what I want to do is this:
For every item in the order (ie, every entry in cart_shoppingcart that matches the username and order number), take the quantity (x) the customer is ordering, then take the quantity of stock remaining (y), then subtract x from y to create the new stock level (z) and update the appropriate record in cart_products with z (all this with SQl preferably).
I was thinking of using a Do while loop, but realised that it wouldn't work as I'd have to use several SQL statements and then I'd run into a problem the minute ASP reads "objrec.movenext".
Last week, my shopping cart was still working well until I began getting the following errors 2days ago..
Error Type:
ADODB.Recordset (0x800A0BCD) Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. ../order/saveorder.asp, line 157
Browser Type:
Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)
Page: GET /main/saveorder.asp
Could you check my code below and let me know what possibly the error is?
I'm trying to pull the last 5 records from my database.
<% j=5 rs.MoveLast While ((j>0) AND (NOT rs_article.BOF))%> ''Execute HTML and data insertion here
<%rs_article.MovePrevious j=j-1 Wend%>
Everytime I attempt to run this code, I recieve an HTTP 500- Internal Server Error. It tells me no more than that. I know that my connection settings are OK because when I move forward through the database (first five records), the code executes without error. And yes, my Cursor type is Dynamic.
Alternatively, I would also like to know how to add new recordset to the beginning of a database rather than the end.
I have an Access database with two fields that I would like to group by. The two fields are location and department. Field names are "Location" and "DeptName".
I have the code correct for grouping by location. That code looks like this: Code: