I'm trying to write a piece of ASP that will allow me to display only one
element of a XML file. I am new to XML and wanted to find out what I am
doing wrong. I think it may be to do with the nodes ? When this is currently
run it comes up with the error "Overflow" ('800a0006').
I am trying to split my search results into manageable pages, with 10 or 15 results per page. My question is- where do I place the pagesize element in this code? and what would it look like? Code:
I have a form that has dynamically assigned element names. How would I do the following: (original code) sub OnControlLoad set Control = Document.getElementById("MsRdpClient") if Not Control is Nothing then if Control.readyState = 4 then Document.all.connectbutton.disabled = FALSE end if end if end sub
I want to get this line Document.all.connectbutton.disabled = FALSE to loop and look like Document.all.connectbutton1.disabled = FALSE Document.all.connectbutton2.disabled = FALSE Document.all.connectbutton3.disabled = FALSE etc....up to a predefined value
I use an array of elements and I want to know the position of a given element in my array I know the filter function that allows to determine if the element i look for is in the array but this function doesn't allow me to know its position.
How can i find an asp file's TAG like input, button from another asp file... For example i call a.asp from internet explorer and i want to list b.asp 's elements.(input, button, etc...)
I have a dynamic form sending information via name=value pairs.I know I can read the value of each element in the sending form by using the following.... for i = 1 to request.form.count response.write "<p>" & request.form(i) next
but since it's a dynamic entry page (it's built based on number of fields in a database), I need to know the name of each element also.not just the value.Is there a good way to get the "name" portion of the element on the form without having to parse through the request.form string?
I am creating a recordset paging script, however I am having a few issues. I need to remove a certain part of the querystring for it to work properly. i.e i need to remove
mydomain.asp?oParameter=124&oParameter2=87
I can't just do a Replace, because the value of the parameter will change for each page. Is ther an easy way to remove this from the full querystring?
I have noticed on some forms that when a user submits the form and there is a textarea element that a lot of extra whitespace is getting submitted at the end of the elements content. What's going on.
How to disable a select element via vbscript from another element in the same form. I want to disable a text area element named xptoTextArea if and only if a certain option value is selected.
If this option is selected then disable this text area element.
i need to find some scrit to uploadimages but with multi elements form i mean i need to put some textboxes and compo boxes with the uploading form to process the data entered in the text boxes and copbo boxes something = the posting new thread u can write ur thread and choose file to attach hope it's clear.
I have created the following code to create the recordset rsToBeApprovedLocalItemID. Unfortunately, the for next loop works properly only on the first cycle. The response.write(arrToBeApprovedCatSub(0)&arrToBeApprovedCatSub(1)&"<br>")works for each loop but the SQL statement sqlToBeApprovedLocalItemID returns a populated recordset only on the first loop.
On subsequent loops it is empty even though the arrToBeApprovedCatSub(0) and arrToBeApprovedCatSub(1) are alive and well. What's going on? This is truly weird behaviour. I have not come across something this funky before. Code:
how to create an array of checkboxes that were selected from a form on one page and pass them into hidden fields in a form on the next page? I have this massive project I've been working on and am having trouble with this.
in J-Script, I could do it by Eval() or about eight ways through the DOM. It seems crazy to me that if I can access the Attributes of a specific element directly by ID (thisTD.Attributes), I couldn't also access it by reference.
But I have been able to find NOTHING to indicate how this may be done. Obviously, my problem is not limited to a single attribute, or else I would have just typed them all out by now. Trouble is, there is a lot of logic that must be applied to the data before setting the attribute. Without being able to iterate or loop by reference, I will be typing for ages just to change some freaking classes.
I am in the middle of writing a system with 8 different entry form screens, at the end of the 8 forms (10 entry fields on each form, with pull down scores of 0 to 10) I want to do the following :
total up the results for each form/screen sort the results display the top 3, with additional text, and then add to the database
Now, I've got the 8 entry screens working fine, with verification, so I have the 80 available numbers. I have added these up to create 8 totals. Where I'm stuck now is the best way to sort these and display the results I require. I could do it with a messy, nested "if one > two then if one > three" etc etc approach, but wondered if anyone had a less stressful method to consider?
could some one tell me how to display the date in an html form only up to 30 if April, June, September and November is selected, and 31 for all the rest?or even better, 28, 29 for February according to leap year or not?
i am working on image display program like displaying thumbnail. i want to display 2 records in one row. after every 2 record displayed table row must change and make new row.
I need to be able to display a row and check to see if there are any other rows with a parent_id value of the original row and display them below. table is:
i have my code like this which displays the college name and url for college website. say for example there is college whose SI_Web_Site is like this www.bgsu.edu/ in table. when i display it on web page and move my cursor on it . can someone tell me where the http:///# are coming from and thats the reason why it doesnt open up the college website.
I'm trying to display the value of <Timestamp> to a page. I'm having trouble understanding XML DOM and I can't find a simple example of something like this. If anybody can show me right quick how to display it to the page.
I would like to select from drop down menu and depending on the selection display 1-3 radio buttons next to the selection box. I have tried some different code and nothing is working. What is the best way to do this?
I'd like to know how to display the current URL on the web page as a footer. This seems to be a fairly simple task, but everything i've found on the internet either doesn't work for some reason, or is asp.net specific....