XML DOM Methods Question
I am trying to parse XML returns from a certain website, sent back in response to my URL queries. The root node of the returned XML has a namespace instruction that I cannot get rid of.
Why do I want to do that, you may ask? Well, I' m really a newbie with XML/XLST/XPath and so on, but I know that If I paste the XML return into a new XML document, get rid
of the namespace stuff, and use that page instead of the original XML return, my code works! Below is a sample of my code so far. Code:
View Replies
How can I select only certain records from a recordset using the ADODB functions? I've had a ganders through the W3School ADODB Recordset Reference but I'm struggling to understand all the functions.I was hoping to start and end the recordset from specified numbers eg. records 11-20.
View Replies
View Related
I would like to know about the methods : post and get of ASP.What is the difference between them.
View Replies
View Related
Using HTTP_REFERER I cannot capture the URL when the link is made via a
button:
<input type="button" name="Continue" value="Continue Shopping"
onclick="ContinueShopping('http://mysite/supertest.asp');">
I do not control the script above, it is on an e-commerce site that is very
generic, meant for many users - and is generated by their server code. I
want to capture the URL and with an if/then redirect if the last place
visited was the checkout site.
I need an alternate method of URL capture, rather than HTTP_REFERER.
View Replies
View Related
I have two submit buttons. The first one ,when hit displays a table on the same page.The next submit,when hit should insert certain elements from the page to DB and go the next page saying "thanks"...
I am not sure how i can achieve this .I want to know some ideas or if it is possible to use to form methods in one page?
View Replies
View Related
i'm needing a different shopping cart method to update an inventory catalog. it uses the dictionary object, stored as a session variable. not efficient, as some has let me know. i know of one other method of building temp tables in the db. are there any other methods that are efficient and scalable?
View Replies
View Related
I am using the following code to create abd use a recordset:
Code:
SET RS = Server.CreateObject("ADODB.RecordSet")
SET RS.CursorLocation = aduseclient
SET RS.CursorType = dymanic
SET RS = cn.execute("SELECT * FROM thistable")
But all I get is the following error:
Microsoft VBScript runtime error '800a01a8'
Object required: 'CursorLocation'
/RUNGE ARCHIVING/default.asp, line 67
which is pointing to the folling line:
SET RS.CursorLocation = aduseclient
If I tafe out that line it will give problems in the line below it, it i delete that it works fine. But I want use to a dynamic recordset. Is there something I typed wrong or a setting I overlooked, or anything on how to fix this ??
View Replies
View Related
What is the best way to encrypt an email?
View Replies
View Related
I'm using xmlhttp to get info from 10 different sites.. 1 site's info is coming to me about 3 second. but when i use 10 sites it longs about 30 seconds.. how can i make it faster ... any solution or any different method can you offer me?
View Replies
View Related
The database is used for referencing filename, there located folder, id, order shown, but also there are some fields say "location_1" up to "location_4" which have a 0 , 1 or 2 in them. 0 means that file not needed for that section. 1 means needed for that section, and 2 means mandantory (must be seen before exit).
firstly selecting a location from a html radio box, drop down menu (not decided yet) will return whats needed so not showing pages what aint needed and wasting time.
Here it is though in order on the left i wish it to build a menu, but more advanced than plain links would be good. drop down like windows explorer etc. Code:
View Replies
View Related